GET api/account/branch/{branchID}
Get branch data with branch ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| branchID |
Unique branch identifier |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Branch| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchID |
Uniqiue Branch ID of Branch data |
integer |
Required |
| LicenseeID |
Licensee linked to the branch data |
integer |
Required |
| BranchName |
Branch Name |
string |
Required |
Response Formats
application/json, text/json
Sample:
{
"BranchID": 102,
"LicenseeID": 153,
"BranchName": "Default"
}
application/xml, text/xml
Sample:
<Branch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.Account"> <BranchID>102</BranchID> <BranchName>Default</BranchName> <LicenseeID>153</LicenseeID> </Branch>