POST api/Branch/getAllBranchesByResturantIDF
Request Information
URI Parameters
None.
Body Parameters
GetBranchesRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| RestaurantIDF | globally unique identifier |
None. |
|
| SearchValue | string |
None. |
|
| TodayDate | string |
None. |
|
| BranchIDP | globally unique identifier |
None. |
|
| CurrentLatitude | decimal number |
None. |
|
| CurrentLongitude | decimal number |
None. |
|
| RadiusInKm | decimal number |
None. |
|
| RowsPerPage | integer |
None. |
|
| PageNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"RestaurantIDF": "b948a3cc-eb11-4d9f-a55c-4b7385c41356",
"SearchValue": "sample string 2",
"TodayDate": "sample string 3",
"BranchIDP": "a4954d17-e8b8-4179-8b79-3379d641790f",
"CurrentLatitude": 1.0,
"CurrentLongitude": 1.0,
"RadiusInKm": 1.1,
"RowsPerPage": 4,
"PageNumber": 5
}
application/xml, text/xml
Sample:
<GetBranchesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SQLClass"> <PageNumber>5</PageNumber> <RowsPerPage>4</RowsPerPage> <BranchIDP>a4954d17-e8b8-4179-8b79-3379d641790f</BranchIDP> <CurrentLatitude>1</CurrentLatitude> <CurrentLongitude>1</CurrentLongitude> <RadiusInKm>1.1</RadiusInKm> <RestaurantIDF>b948a3cc-eb11-4d9f-a55c-4b7385c41356</RestaurantIDF> <SearchValue>sample string 2</SearchValue> <TodayDate>sample string 3</TodayDate> </GetBranchesRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |