Webhooks
The webhooks are sorted by creation date, with the most recent webhook appearing first.
A JSON array of webhooks.
Invalid API key
An unexpected error occurred.
GET /api/manager/v1/webhooks HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Accept: */*
[
{
"id": "9c0306d5-e18e-4689-93da-997e2cdc16e7",
"url": "https://example.com",
"createdAt": "2024-12-03T10:07:54.940Z",
"updatedAt": "2024-12-03T10:07:54.940Z"
}
]
Creates a webhook with the specified URL. A webhook secret is generated and returned in the response. It is used to sign the webhook payloads.
The URL of the webhook.
The webhook has been created.
The request is invalid.
Invalid API key
An unexpected error occurred.
POST /api/manager/v1/webhooks HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 29
{
"url": "https://example.com"
}
{
"id": "9c0306d5-e18e-4689-93da-997e2cdc16e7",
"url": "https://example.com",
"secret": "a1b2c3d4e5",
"createdAt": "2024-12-03T10:07:54.940Z",
"updatedAt": "2024-12-03T10:07:54.940Z"
}
Returns a webhook by its unique identifier.
The unique identifier of the webhook.
A webhook.
Invalid API key
Webhook not found.
An unexpected error occurred.
GET /api/manager/v1/webhooks/{webhookId} HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Accept: */*
{
"id": "9c0306d5-e18e-4689-93da-997e2cdc16e7",
"url": "https://example.com",
"createdAt": "2024-12-03T10:07:54.940Z",
"updatedAt": "2024-12-03T10:07:54.940Z"
}
Deletes a webhook by its unique identifier.
The unique identifier of the webhook.
The webhook has been deleted.
No content
Invalid API key
Webhook not found.
An unexpected error occurred.
DELETE /api/manager/v1/webhooks/{webhookId} HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Accept: */*
No content