v50
latestOpenAPI 3.1.0Creative Force Client Subscription Termsraw.githubusercontent.com2026-07-137852387.4 KBWebhooks
Retrieve webhooks
Retrieves webhooks.
get/webhook
Query parameters
http_method'get' | 'post'
Filter by HTTP method.
subscription_event'allocation_created' | 'allocation_payment_created' | 'allocation_payment_deleted' | 'allocation_payment_status_changed' | 'allocation_payment_updated' | 'assignment_completed' | 'assignment_created' | 'collaborator_invited' | 'document_created' | 'document_deleted' | 'document_updated' | 'entry_category_changed' | 'entry_chapter_changed' | 'entry_copied' | 'entry_created' | 'entry_deleted' | 'entry_eligible' | 'entry_ineligible' | 'entry_moderated' | 'entry_resubmitted' | 'entry_submitted' | 'entry_tagged' | 'entry_updated' | 'field_value_updated' | 'membership_registered' | 'payment_pending' | 'payment_success' | 'review_task_created' | 'review_task_submitted' | 'role_granted' | 'user_updated'
Filter by subscription event.
urlstring
Filter by webhook URL.
pagenumber
Specify the page number to return.
per_pagenumber
Limit the number of items returned to between 1 and 100.
If you provide a value outside this range, you will receive a 400 response.
order'events' | 'http_method' | 'notification_emails' | 'signing_keys' | 'title' | 'updated' | 'url'
Column to sort by.
dir'asc' | 'desc'
Sort in ascending or descending order.
Headers
Accept'application/vnd.Creative Force.v2.3+json' | 'application/vnd.Creative Force.v2.3+xml' required
Defines the response type.
Response
Webhooks retrieved.
Example response
{
"current_page": 1,
"data": [
{
"created": "2025-12-21T23:11:20Z",
"events": [
"entry_created",
"entry_submitted"
],
"fields": [],
"form": null,
"method": "post",
"name": "Entry notifications",
"signing_key": "REDACTED",
"slug": "AbCdEfGh",
"updated": "2025-12-21T23:11:20Z",
"url": "https://example.com/webhooks"
},
{
"created": "2026-04-23T10:41:29Z",
"events": [
"entry_updated"
],
"fields": [],
"form": null,
"method": "get",
"name": "Entry update notifications",
"signing_key": "REDACTED",
"slug": "CdEfGhIj",
"updated": "2026-04-23T10:41:29Z",
"url": "https://example.com/webhooks/updates"
}
],
"first_page_url": "https://api.au.cr4ce.com/webhook?per_page=10&page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://api.au.cr4ce.com/webhook?per_page=10&page=1",
"next_page_url": "",
"path": "https://api.au.cr4ce.com/webhook",
"per_page": 10,
"prev_page_url": "",
"to": 2,
"total": 2
}