POST api/GetBranchList
Request Information
URI Parameters
None.
Body Parameters
Jsonparams| Name | Description | Type | Additional information |
|---|---|---|---|
| jsonstring | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"jsonstring": "sample string 1"
}
application/xml, text/xml
Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HantidhowrWebApiV1.Models"> <jsonstring>sample string 1</jsonstring> </Jsonparams>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Branchlist| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchDetails | Collection of Branch |
None. |
Response Formats
application/json, text/json
Sample:
{
"BranchDetails": [
{
"branchid": "sample string 1",
"localname": "sample string 2"
},
{
"branchid": "sample string 1",
"localname": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<Branchlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HantidhowrWebApiV1.Models">
<BranchDetails>
<Branch>
<branchid>sample string 1</branchid>
<localname>sample string 2</localname>
</Branch>
<Branch>
<branchid>sample string 1</branchid>
<localname>sample string 2</localname>
</Branch>
</BranchDetails>
</Branchlist>