Send a test delivery
const url = 'https://reignitor.com/api/webhooks/hooks/example/test';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://reignitor.com/api/webhooks/hooks/example/test \ --header 'Authorization: Bearer <token>'Sends one signed ping event to the webhook’s URL and reports what your endpoint
answered. Use it to check your signature code.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”Responses
Section titled “ Responses ”The delivery was attempted. delivered is true when your endpoint answered 2xx.
object
The HTTP status your endpoint returned, or 0 if it could not be reached.
Example
{ "delivered": true, "status": 200}The stored URL is no longer deliverable.
Every error has a human-readable error. Most also have a machine-readable code.
object
A message you can show to a person.
A stable code to branch on. Not every error has one.
Extra context for some codes, such as retryAfter or usage figures.
Seconds to wait before retrying. Present on some RATE_LIMITED errors.
Examplegenerated
{ "error": "example", "code": "example", "details": "example", "retryAfter": 1, "feature": "example", "plan": "example"}The key is missing, malformed, unknown or revoked.
Every error has a human-readable error. Most also have a machine-readable code.
object
A message you can show to a person.
A stable code to branch on. Not every error has one.
Extra context for some codes, such as retryAfter or usage figures.
Seconds to wait before retrying. Present on some RATE_LIMITED errors.
Examples
No key, or not an emp_ key
{ "error": "Unauthorized", "code": "NO_API_KEY"}Unknown or revoked key
{ "error": "Invalid or revoked API key", "code": "INVALID_API_KEY"}No webhook with this ID on your account.
Every error has a human-readable error. Most also have a machine-readable code.
object
A message you can show to a person.
A stable code to branch on. Not every error has one.
Extra context for some codes, such as retryAfter or usage figures.
Seconds to wait before retrying. Present on some RATE_LIMITED errors.
Example
{ "error": "Hook not found"}