GET Getir/StoreStatus?RestaurantID={RestaurantID}&SettingID={SettingID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RestaurantID | integer |
Required |
|
| SettingID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
IntegrationControlPanelItem| Name | Description | Type | Additional information |
|---|---|---|---|
| RestaurantId | integer |
None. |
|
| SettingID | integer |
None. |
|
| IntegrationType | integer |
None. |
|
| IntegrationName | string |
None. |
|
| HasIntegration | boolean |
None. |
|
| IntegrationStoreData | IntegrationStoreData |
None. |
Response Formats
application/json, text/json
Sample:
{
"RestaurantId": 1,
"SettingID": 2,
"IntegrationType": 3,
"IntegrationName": "sample string 4",
"HasIntegration": true,
"IntegrationStoreData": {
"IntegrationSuccess": true,
"StoreStatus": true,
"StoreInWorkingHours": true
}
}
application/xml, text/xml
Sample:
<Webhook.IntegrationControlPanelItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiApp.Models">
<HasIntegration>true</HasIntegration>
<IntegrationName>sample string 4</IntegrationName>
<IntegrationStoreData>
<IntegrationSuccess>true</IntegrationSuccess>
<StoreInWorkingHours>true</StoreInWorkingHours>
<StoreStatus>true</StoreStatus>
</IntegrationStoreData>
<IntegrationType>3</IntegrationType>
<RestaurantId>1</RestaurantId>
<SettingID>2</SettingID>
</Webhook.IntegrationControlPanelItem>