GET api/v1/{practiceId}/billing/providerconfiguration
Returns speciality rule by specialityCode
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| practiceId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Array of invoices
Com.Healthbridge.Hhas.Patient.Interface.ValueObjects.PatientConfigurationVo| Name | Description | Type | Additional information |
|---|---|---|---|
| PracticeId | globally unique identifier |
None. |
|
| PatientId | globally unique identifier |
None. |
|
| CapturedDate | date |
None. |
|
| Configuration | Dictionary of string [key] and string [value] |
None. |
Response Formats
application/json, text/json
Sample:
{
"PracticeId": "72dedf4f-9d14-43d5-ada8-c8ebae7a4215",
"PatientId": "c8b2e268-6d81-4222-92f0-7d15cac95bcf",
"CapturedDate": "2026-05-21T20:46:41Z",
"Configuration": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
}
}
application/xml, text/xml
Sample:
<PatientConfigurationVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/clinical/patient/v1/PatientConfigurationVo/">
<CapturedDate>2026-05-21T20:46:41.8635903+02:00</CapturedDate>
<Configuration xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Configuration>
<PatientId>c8b2e268-6d81-4222-92f0-7d15cac95bcf</PatientId>
<PracticeId>72dedf4f-9d14-43d5-ada8-c8ebae7a4215</PracticeId>
</PatientConfigurationVo>