The PagedWebhookHistoryResult JSON object defines a page of WebhookHistory JSON Objects (each containing a WebhokEvent JSON Object) returned from a webhook history search.
- Make sure you're familiar with JSON before continuing.
- The JSON objects are defined using Orderly. Optional attrs end with a "?" all others are required.
- isodate fields use one of these ISO 8601 format: 2014-01-01T10:30:00.000+01:00, 2014-01-01T10:30:00.000+0100, 2014-01-01T10:30:00.000Z
- Dsco reserves the right to add new attributes at any time so Partners should ensure their validators won't break should this happen
Referenced Objects
Definition
Object { string pageId?; # If present, return this on the subsequent # search call to get the next page of results, # you're done when this value is not set array {ref WebhookHistory} webhookHistory; # The history searched for };
Example
Referenced Object: WebhookEvent JSON Object
{ "pageId": "2342kasdf980234saf32542asf2342342", "webhookHistory": [ <WebhookEvent>, <WebhookEvent> ] }
Comments
Please sign in to leave a comment.