---
title: "Retrieve list of webhook submissions"
method: GET
path: "/webhook-submissions/"
tags: ["Webhooks"]
---

# Retrieve list of webhook submissions

`GET /webhook-submissions/`

Retrieve a list of all submissions of owned webhooks.

## Query parameters

- `page` integer
- `page_size` integer
- `created_after` string
- `created_before` string
- `is_success` boolean
- `response_code` string
- `webhook_id` string, uuid

## Response `200`

OK

- object
  - `count` integer, required
  - `next` string
  - `previous` string
  - `results` object[], required
    - `date_created` string, date-time, required — [ISO 8601](https://www.w3.org/TR/NOTE-datetime) creation timestamp
    - `date_modified` string, date-time, required — [ISO 8601](https://www.w3.org/TR/NOTE-datetime) modification timestamp
    - `payload` object, required — Payload sent in webhook submission body
    - `topic` 'PRINT_JOB_STATUS_CHANGED', required — Submission topic
    - `is_success` boolean, required — Indicates if submission succeeded or not
    - `response_code` number — Response code of submission
    - `attempts` number, required — Count of submission attempts
    - `webhook` object, required — Related webhook data
      - `id` string, uuid, required — Webhook ID
      - `is_active` boolean, required — Indicates if webhook is active
      - `topics` string[], required — List of subscribed topics
      - `url` string, required — Webhook URL

## Other responses

- `401` — Unauthorized
- `403` — Forbidden

---

[API](https://skmtc.dev/lulu/apis/universal-publishing-platform-api.md) · [All operations](https://skmtc.dev/lulu/apis/universal-publishing-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/lulu/universal-publishing-platform-api/revisions/3119f71811f8/schema)
