GET api/v1/{practiceId}/billing/providerconfiguration

Returns speciality rule by specialityCode

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Array of invoices

Com.Healthbridge.Hhas.Patient.Interface.ValueObjects.PatientConfigurationVo
NameDescriptionTypeAdditional 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": "4111e864-fc07-4fb6-8b22-964f96c67762",
  "PatientId": "8c9b30b2-747f-4fff-8b78-a32594228a88",
  "CapturedDate": "2025-10-09T20:38:56Z",
  "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-10-09T20:38:56.5226663+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>8c9b30b2-747f-4fff-8b78-a32594228a88</PatientId>
  <PracticeId>4111e864-fc07-4fb6-8b22-964f96c67762</PracticeId>
</PatientConfigurationVo>