GET api/Common/getBus/Branch/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BusDto| Name | Description | Type | Additional information |
|---|---|---|---|
| BusId | decimal number |
None. |
|
| BusName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BusId": 1.0,
"BusName": "sample string 2"
},
{
"BusId": 1.0,
"BusName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfBusDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZenoxERP.API.Models.Extensions">
<BusDto>
<BusId>1</BusId>
<BusName>sample string 2</BusName>
</BusDto>
<BusDto>
<BusId>1</BusId>
<BusName>sample string 2</BusName>
</BusDto>
</ArrayOfBusDto>