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": "986b4a97-cd18-4ca2-9f13-e09e2254a376",
"PatientId": "9f6bdacd-be46-4d59-80ee-e6243ab6153d",
"CapturedDate": "2025-12-11T20:42:51Z",
"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>2025-12-11T20:42:51.7190078+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>9f6bdacd-be46-4d59-80ee-e6243ab6153d</PatientId>
<PracticeId>986b4a97-cd18-4ca2-9f13-e09e2254a376</PracticeId>
</PatientConfigurationVo>