POST api/v1/quicktransactions/searchcompanyexternalbranch
Request Information
URI Parameters
None.
Body Parameters
CompanyExternalBranchSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CompanyId | integer |
None. |
|
| BranchId | integer |
None. |
|
| Search | string |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
|
| Status | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CompanyId": 2,
"BranchId": 3,
"Search": "sample string 4",
"Skip": 5,
"Take": 6,
"Status": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<CompanyExternalBranchSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Companies">
<BranchId>3</BranchId>
<CompanyId>2</CompanyId>
<Id>1</Id>
<Search>sample string 4</Search>
<Skip>5</Skip>
<Status xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Status>
<Take>6</Take>
</CompanyExternalBranchSearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfIEnumerableOfCompanyExternalBranch| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Collection of CompanyExternalBranch |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.