Returns a webhook by its unique identifier.
The unique identifier of the webhook.
curl -L \ --url 'https://api.rialtobridge.xyz/api/manager/v1/webhooks/{webhookId}' \ --header 'RIALTO_API_KEY: YOUR_API_KEY'
{ "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.
curl -L \ --request DELETE \ --url 'https://api.rialtobridge.xyz/api/manager/v1/webhooks/{webhookId}' \ --header 'RIALTO_API_KEY: YOUR_API_KEY'
No body
The webhooks are sorted by creation date, with the most recent webhook appearing first.
curl -L \ --url 'https://api.rialtobridge.xyz/api/manager/v1/webhooks' \ --header 'RIALTO_API_KEY: YOUR_API_KEY'
[ { "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.
curl -L \ --request POST \ --url 'https://api.rialtobridge.xyz/api/manager/v1/webhooks' \ --header 'RIALTO_API_KEY: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "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" }