Skip to content

List webhooks

GET
/api/webhooks/hooks
curl --request GET \
--url https://reignitor.com/api/webhooks/hooks \
--header 'Authorization: Bearer <token>'

Returns this account’s webhook subscriptions. Signing secrets are never returned here.

Your webhooks.

Media typeapplication/json
object
hooks
required
Array<object>
object
id
string | integer
event
string
Allowed values: user.signup user.onboarded subscription.created subscription.canceled video.completed video.failed credits.low credits.purchased
webhook_url
string
description
string | null
active
boolean
has_secret

Whether the webhook has a signing secret. The secret itself is never returned after creation.

boolean
failure_count

Failed deliveries in a row. After 20 the webhook is switched off.

integer | null
last_delivery_at
string | null
last_status
string | null
key
additional properties
any
Example
{
"hooks": [
{
"event": "user.signup"
}
]
}

The key is missing, malformed, unknown or revoked.

Media typeapplication/json

Every error has a human-readable error. Most also have a machine-readable code.

object
error
required

A message you can show to a person.

string
code

A stable code to branch on. Not every error has one.

string
details

Extra context for some codes, such as retryAfter or usage figures.

retryAfter

Seconds to wait before retrying. Present on some RATE_LIMITED errors.

integer
feature
string
plan
string
key
additional properties
any
Examples

No key, or not an emp_ key

{
"error": "Unauthorized",
"code": "NO_API_KEY"
}