POST api/v1/{practiceId}/patientevent/medicalinsurer/bulkupdate
Used to do add of medical insurer
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| practiceId | string |
None. |
Body Parameters
Collection of Com.Healthbridge.Hhas.PatientEvent.Interface.ValueObjects.MedicalInsurerVo| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| InsurerXRef | string |
None. |
|
| Name | string |
None. |
|
| AccountNo | string |
None. |
|
| string |
None. |
||
| Phone1 | string |
None. |
|
| Phone2 | string |
None. |
|
| AddressLine1 | string |
None. |
|
| AddressLine2 | string |
None. |
|
| AddressLine3 | string |
None. |
|
| PostalCode | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": "ded31d6f-25ef-491b-9897-e3c1d1ef102a",
"InsurerXRef": "sample string 2",
"Name": "sample string 3",
"AccountNo": "sample string 4",
"Email": "sample string 5",
"Phone1": "sample string 6",
"Phone2": "sample string 7",
"AddressLine1": "sample string 8",
"AddressLine2": "sample string 9",
"AddressLine3": "sample string 10",
"PostalCode": "sample string 11"
},
{
"Id": "ded31d6f-25ef-491b-9897-e3c1d1ef102a",
"InsurerXRef": "sample string 2",
"Name": "sample string 3",
"AccountNo": "sample string 4",
"Email": "sample string 5",
"Phone1": "sample string 6",
"Phone2": "sample string 7",
"AddressLine1": "sample string 8",
"AddressLine2": "sample string 9",
"AddressLine3": "sample string 10",
"PostalCode": "sample string 11"
}
]
application/xml, text/xml
Sample:
<ArrayOfMedicalInsurerVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.PatientEvent.Interface.ValueObjects">
<MedicalInsurerVo>
<AccountNo>sample string 4</AccountNo>
<AddressLine1>sample string 8</AddressLine1>
<AddressLine2>sample string 9</AddressLine2>
<AddressLine3>sample string 10</AddressLine3>
<Email>sample string 5</Email>
<Id>ded31d6f-25ef-491b-9897-e3c1d1ef102a</Id>
<InsurerXRef>sample string 2</InsurerXRef>
<Name>sample string 3</Name>
<Phone1>sample string 6</Phone1>
<Phone2>sample string 7</Phone2>
<PostalCode>sample string 11</PostalCode>
</MedicalInsurerVo>
<MedicalInsurerVo>
<AccountNo>sample string 4</AccountNo>
<AddressLine1>sample string 8</AddressLine1>
<AddressLine2>sample string 9</AddressLine2>
<AddressLine3>sample string 10</AddressLine3>
<Email>sample string 5</Email>
<Id>ded31d6f-25ef-491b-9897-e3c1d1ef102a</Id>
<InsurerXRef>sample string 2</InsurerXRef>
<Name>sample string 3</Name>
<Phone1>sample string 6</Phone1>
<Phone2>sample string 7</Phone2>
<PostalCode>sample string 11</PostalCode>
</MedicalInsurerVo>
</ArrayOfMedicalInsurerVo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.Boolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Sucess | boolean |
None. |
|
| ResponseCode | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| Data | boolean |
None. |
|
| Links | Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiLink |
None. |
Response Formats
application/json, text/json
Sample:
{
"Sucess": true,
"ResponseCode": 2,
"ResponseMessage": "sample string 3",
"Data": true,
"Links": [
{
"Rel": "sample string 1",
"HRef": "sample string 2"
},
{
"Rel": "sample string 1",
"HRef": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<RestApiResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
<Data>true</Data>
<Links>
<RestApiLink>
<HRef>sample string 2</HRef>
<Rel>sample string 1</Rel>
</RestApiLink>
<RestApiLink>
<HRef>sample string 2</HRef>
<Rel>sample string 1</Rel>
</RestApiLink>
</Links>
<ResponseCode>2</ResponseCode>
<ResponseMessage>sample string 3</ResponseMessage>
<Sucess>true</Sucess>
</RestApiResultOfboolean>