Skip to content

Get Patient Account

Request

Security
x-api-key and a-api-key
Path
client_idintegerrequired
account_idintegerrequired
GET
/patient/{client_id}/account/{account_id}
curl -i -X GET \
  'https://api.pracsuite.com/v1/patient/{client_id}/account/{account_id}' \
  -H 'a-api-key: YOUR_API_KEY_HERE' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Successful

Bodyapplication/json
tenant_idinteger
client_idinteger
Example:1
archiveboolean
Example:false
bill_3rd_partyboolean
Example:false
short_descriptionstring
Example:"Private"
billing_namestring
emailstring, (email)
contact_namestring
acc_nostring
claim_numberstring
employer_namestring
injurystring
date_of_injurystring, (date)
hospitalstring
fee_cat_idinteger
client_nostring
address_1string
address_2string
address_3string
address_4string
suburbstring
address_statestring
postcodestring
countrystring
phonestring
faxstring
notesstring
payer_idinteger
payer_contact_idinteger
custom_field_namestring
Example:"Custom"
custom_field_valuestring
bill_familyboolean
Example:false
referralsArray of objects
treatment_plansArray of objects
Response
{ "links": { "self": "https://api.pracsuite.com/v1/patient/1/account/1", "invoices": "https://api.pracsuite.com/v1/patient/1/account/1/invoice", "payments": "https://api.pracsuite.com/v1/patient/1/account/1/payment" }, "tenant_id": 0, "client_id": 1, "archive": false, "bill_3rd_party": false, "short_description": "Private", "billing_name": "string", "email": "user@example.com", "contact_name": "string", "acc_no": "string", "claim_number": "string", "employer_name": "string", "injury": "string", "date_of_injury": "2019-08-24", "hospital": "string", "fee_cat_id": 0, "client_no": "string", "address_1": "string", "address_2": "string", "address_3": "string", "address_4": "string", "suburb": "string", "address_state": "string", "postcode": "string", "country": "string", "phone": "string", "fax": "string", "notes": "string", "payer_id": 0, "payer_contact_id": 0, "custom_field_name": "Custom", "custom_field_value": "string", "bill_family": false, "referrals": [ {} ], "treatment_plans": [ {} ] }