GET api/RouteData/GetCompanyData?cBranchNo={cBranchNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| cBranchNo | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CompanyData| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyName | string |
None. |
|
| CompanyCity | string |
None. |
|
| CompanyAddress | string |
None. |
|
| CompanyVAT | string |
None. |
|
| CompanyBULSTAT | string |
None. |
|
| StoreName | string |
None. |
|
| StoreAddress | string |
None. |
|
| Prefix | string |
None. |
|
| ObjectId | integer |
None. |
|
| KlenSetting | Collection of KlenSettingContract |
None. |
Response Formats
application/json, text/json
Sample:
{
"CompanyName": "sample string 1",
"CompanyCity": "sample string 2",
"CompanyAddress": "sample string 3",
"CompanyVAT": "sample string 4",
"CompanyBULSTAT": "sample string 5",
"StoreName": "sample string 6",
"StoreAddress": "sample string 7",
"Prefix": "sample string 8",
"ObjectId": 1,
"KlenSetting": [
{
"Name": "sample string 1",
"Value": "sample string 2"
},
{
"Name": "sample string 1",
"Value": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<CompanyData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PhoenixServiceRest.Models">
<CompanyAddress>sample string 3</CompanyAddress>
<CompanyBULSTAT>sample string 5</CompanyBULSTAT>
<CompanyCity>sample string 2</CompanyCity>
<CompanyName>sample string 1</CompanyName>
<CompanyVAT>sample string 4</CompanyVAT>
<KlenSetting>
<KlenSettingContract>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
</KlenSettingContract>
<KlenSettingContract>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
</KlenSettingContract>
</KlenSetting>
<ObjectId>1</ObjectId>
<Prefix>sample string 8</Prefix>
<StoreAddress>sample string 7</StoreAddress>
<StoreName>sample string 6</StoreName>
</CompanyData>