Webhooks
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.
Authorizations
RIALTO_API_KEYstringRequired
Body
urlstring · uriRequired
The URL of the webhook.
Responses
201
The webhook has been created.
application/json
400
The request is invalid.
application/json
401
Invalid API key
500
An unexpected error occurred.
post
/webhooksReturns a webhook by its unique identifier.
Authorizations
RIALTO_API_KEYstringRequired
Path parameters
webhookIdstring · uuidRequired
The unique identifier of the webhook.
Responses
200
A webhook.
application/json
401
Invalid API key
404
Webhook not found.
500
An unexpected error occurred.
get
/webhooks/{webhookId}Deletes a webhook by its unique identifier.
Authorizations
RIALTO_API_KEYstringRequired
Path parameters
webhookIdstring · uuidRequired
The unique identifier of the webhook.
Responses
204
The webhook has been deleted.
401
Invalid API key
404
Webhook not found.
500
An unexpected error occurred.
delete
/webhooks/{webhookId}No content
Last updated
