GET api/support/{practiceId}/patient/{patientId}/account/info

Get account financial information from mymps system (BC status, account liable, account notes, etc)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceId

doctor id in DrApp system

globally unique identifier

Required

patientId

patient id in DrApp system

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Com.Healthbridge.Hhas.Cloud.WebRole.Areas.ExternalSystemIntegration.Model.AccountInfoVo
NameDescriptionTypeAdditional information
LastBenefitCheckStatus

string

None.

LastBenefitCheckReportUrl

string

None.

LastBenefitCheckDate

date

None.

IsSuspended

boolean

None.

SuspensionReason

string

None.

PrimaryDoctorXref

string

None.

SecondaryDoctorXref

string

None.

IsPrimary

boolean

None.

AccountLiable

decimal number

None.

LastBcContractData

string

None.

Response Formats

application/json, text/json

Sample:
{
  "LastBenefitCheckStatus": "sample string 1",
  "LastBenefitCheckReportUrl": "sample string 2",
  "LastBenefitCheckDate": "2025-04-18T01:34:58Z",
  "IsSuspended": true,
  "SuspensionReason": "sample string 4",
  "PrimaryDoctorXref": "sample string 5",
  "SecondaryDoctorXref": "sample string 6",
  "IsPrimary": true,
  "AccountLiable": 8.0,
  "LastBcContractData": "sample string 9"
}

application/xml, text/xml

Sample:
<AccountInfoVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Cloud.WebRole.Areas.ExternalSystemIntegration.Model">
  <AccountLiable>8</AccountLiable>
  <IsPrimary>true</IsPrimary>
  <IsSuspended>true</IsSuspended>
  <LastBcContractData>sample string 9</LastBcContractData>
  <LastBenefitCheckDate>2025-04-18T01:34:58.1680864+02:00</LastBenefitCheckDate>
  <LastBenefitCheckReportUrl>sample string 2</LastBenefitCheckReportUrl>
  <LastBenefitCheckStatus>sample string 1</LastBenefitCheckStatus>
  <PrimaryDoctorXref>sample string 5</PrimaryDoctorXref>
  <SecondaryDoctorXref>sample string 6</SecondaryDoctorXref>
  <SuspensionReason>sample string 4</SuspensionReason>
</AccountInfoVo>