Webhooks

Retrieve list of webhook submissions

Retrieve a list of all submissions of owned webhooks.

get/webhook-submissions/

Query parameters

pageinteger

Result page, default: 1

page_sizeinteger

The default is 100.

created_afterstring

Filter by creation timestamp after the given (ISO 8601) timestamp.

created_beforestring

Filter by creation timestamp before the given (ISO 8601) timestamp.

is_successboolean

Filter by is_success

response_codestring

Filter by submission response code

webhook_idstring uuid

Filter by webhook ID

Response

OK

countinteger required
nextstring
previousstring

Example response

{
  "count": 3,
  "next": "https://api.lulu.com/resources/?page=3&page_size=1",
  "previous": "https://api.lulu.com/resources/?page=1&page_size=1",
  "results": [
    {
      "date_created": "2023-05-31T10:00:00.414Z",
      "date_modified": "2023-05-31T10:00:00.414Z",
      "payload": {
        "data": {},
        "topic": "PRINT_JOB_STATUS_CHANGED"
      },
      "topic": "PRINT_JOB_STATUS_CHANGED",
      "is_success": true,
      "response_code": 200,
      "attempts": 1,
      "webhook": {
        "id": "f370d09b-912a-4667-9890-ed9bd0c32166",
        "is_active": true,
        "topics": [
          "PRINT_JOB_STATUS_CHANGED"
        ],
        "url": "https://www.webhooks-consumer.com/"
      }
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.