POST api/v1/xref/{tenantXref}/billing/branches/provider/{providerXref}
Update provider related info per branch
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tenantXref | string |
Required |
|
| providerXref | string |
Required |
Body Parameters
Collection of Com.Healthbridge.Hhas.Billing.Interface.ValueObjects.BranchProviderRelatedInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchXRef | string |
None. |
|
| IsDispensing | boolean |
None. |
|
| DispensingLicenseNumber | string |
None. |
|
| IsDefaultBranch | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"BranchXRef": "sample string 1",
"IsDispensing": true,
"DispensingLicenseNumber": "sample string 3",
"IsDefaultBranch": true
},
{
"BranchXRef": "sample string 1",
"IsDispensing": true,
"DispensingLicenseNumber": "sample string 3",
"IsDefaultBranch": true
}
]
application/xml, text/xml
Sample:
<ArrayOfBranchProviderRelatedInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Billing.Interface.ValueObjects">
<BranchProviderRelatedInfo>
<BranchXRef>sample string 1</BranchXRef>
<DispensingLicenseNumber>sample string 3</DispensingLicenseNumber>
<IsDefaultBranch>true</IsDefaultBranch>
<IsDispensing>true</IsDispensing>
</BranchProviderRelatedInfo>
<BranchProviderRelatedInfo>
<BranchXRef>sample string 1</BranchXRef>
<DispensingLicenseNumber>sample string 3</DispensingLicenseNumber>
<IsDefaultBranch>true</IsDefaultBranch>
<IsDispensing>true</IsDispensing>
</BranchProviderRelatedInfo>
</ArrayOfBranchProviderRelatedInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.String| Name | Description | Type | Additional information |
|---|---|---|---|
| Sucess | boolean |
None. |
|
| ResponseCode | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| Data | string |
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": "sample string 4",
"Links": [
{
"Rel": "sample string 1",
"HRef": "sample string 2"
},
{
"Rel": "sample string 1",
"HRef": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<RestApiResultOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
<Data>sample string 4</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>
</RestApiResultOfstring>