Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.66 KB

MenuSyncWebhookRequest.md

File metadata and controls

32 lines (20 loc) · 1.66 KB

MenuSyncWebhookRequest

This request pushes the state of a menu sync operation.

Properties

Name Type Description Notes
requestID String An universally unique identifier (UUID) string. Used to uniquely identify a webhook request. Partners should use this value to distinguish between different webhook requests. If two requests contain the same requestID, only the first request should be considered and later requests must be ignored or discarded. [optional]
merchantID String The merchant's ID that is in GrabFood's database. [optional]
partnerMerchantID String The merchant's ID that is on the partner's database. [optional]
jobID String An UUID string. Uniquely identifies a menu sync job. This can be found from the Menu Update Notification API response header. [optional]
updatedAt String Indicates the time of menu sync status change. This is based on ISO_8601/RFC3339. For example: `2022-07-29T15:55:59Z`. [optional]
status StatusEnum Indicates the state of the menu sync job. [optional]
errors List<String> A string array of errors that occurred during processing. This array is empty if the status is not `FAILED`. [optional]

Enum: StatusEnum

Name Value
QUEUEING "QUEUEING"
PROCESSING "PROCESSING"
SUCCESS "SUCCESS"
FAILED "FAILED"
UNKNOWN_DEFAULT_OPEN_API "unknown_default_open_api"