POST api/UberEats
Request Information
URI Parameters
None.
Body Parameters
UEHookDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| event_id | string |
None. |
|
| event_time | integer |
None. |
|
| event_type | string |
None. |
|
| meta | UberEatsMetaDTO |
None. |
|
| resource_href | string |
None. |
|
| store_id | string |
None. |
|
| partner_store_id | string |
None. |
|
| perform_refresh_menu | boolean |
None. |
|
| webhook_meta | UberEatsWebhookMetaDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"event_id": "sample string 1",
"event_time": 2,
"event_type": "sample string 3",
"meta": {
"user_id": "sample string 1",
"resource_id": "sample string 2",
"status": "sample string 3"
},
"resource_href": "sample string 4",
"store_id": "sample string 5",
"partner_store_id": "sample string 6",
"perform_refresh_menu": true,
"webhook_meta": {
"client_id": "sample string 1",
"webhook_msg_timestamp": 2,
"webhook_msg_uuid": "sample string 3"
}
}
application/xml, text/xml
Sample:
<UEHookDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UShow.UberEats.DTOs">
<event_id>sample string 1</event_id>
<event_time>2</event_time>
<event_type>sample string 3</event_type>
<meta>
<resource_id>sample string 2</resource_id>
<status>sample string 3</status>
<user_id>sample string 1</user_id>
</meta>
<partner_store_id>sample string 6</partner_store_id>
<perform_refresh_menu>true</perform_refresh_menu>
<resource_href>sample string 4</resource_href>
<store_id>sample string 5</store_id>
<webhook_meta>
<client_id>sample string 1</client_id>
<webhook_msg_timestamp>2</webhook_msg_timestamp>
<webhook_msg_uuid>sample string 3</webhook_msg_uuid>
</webhook_meta>
</UEHookDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.