GET Enrollment/GetInsuranceProviders/{practiceID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| practiceID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of InsuranceProvider| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Label | string |
None. |
|
| Group | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"label": "sample string 2",
"group": "sample string 3"
},
{
"id": 1,
"label": "sample string 2",
"group": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfInsuranceProvider xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DynamicsIntegrationToolkit.Models">
<InsuranceProvider>
<Group>sample string 3</Group>
<ID>1</ID>
<Label>sample string 2</Label>
</InsuranceProvider>
<InsuranceProvider>
<Group>sample string 3</Group>
<ID>1</ID>
<Label>sample string 2</Label>
</InsuranceProvider>
</ArrayOfInsuranceProvider>