Data Export Webhook
Overview
The Data Export Webhook is an essential tool for automating the transfer of data. This webhook is activated in two scenarios: when a data export is manually initiated or automatically upon job completion, provided the auto-export feature is enabled by the client within the portal settings.
Upon activation, the webhook will send a payload to the callback_url
configured in portal.
Payload Values
Values | Type | Description |
---|---|---|
id | ID | A unique identifier for the data export. |
state | String | Current state of the data export. |
callback_url | String | The callback url used to |
delivery_url | String | S3 Url that contains the menu in JSON |
additional_urls | [String] | Additional urls (certain client's only) |
job_id | ID | A unique identifier for the job. |
job_type | String | The type of job used to create the data export. |
client_mappings | Object | Custom mappings for the client's system. |
Example Payload
{
"id": "f757ea3a-4bc6-4545-b49a-ebc14be12588",
"state": "completed",
"callback_url": null,
"delivery_url": "https://s3.us-west-1.amazonaws.com/data-delivery.woflow.com/3e93c5f2-b28e-4391-a24f-0bafe75b15ae.json",
"additional_urls": [],
"job_id": "2c212698-0c43-446d-8677-723182516196",
"job_type": "new_sdk_pde_menu",
"client_mappings": {}
}