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": "ed74e290-d82a-4fcf-857d-11bec6aadce8",
"PatientId": "918cf529-8543-4a7f-ae7c-2cd0e16f63ef",
"CapturedDate": "2025-11-19T16:41:14Z",
"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-11-19T16:41:14.9096587+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>918cf529-8543-4a7f-ae7c-2cd0e16f63ef</PatientId>
<PracticeId>ed74e290-d82a-4fcf-857d-11bec6aadce8</PracticeId>
</PatientConfigurationVo>