Webhooks

Returns the list of webhooks.

get
/webhooks

The webhooks are sorted by creation date, with the most recent webhook appearing first.

Authorizations
RIALTO_API_KEYstringRequired
Responses
200

A JSON array of webhooks.

application/json
get
/webhooks

Creates a webhook.

post
/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
post
/webhooks

Returns a webhook by ID.

get
/webhooks/{webhookId}

Returns 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
get
/webhooks/{webhookId}

Deletes a webhook by ID.

delete
/webhooks/{webhookId}

Deletes a webhook by its unique identifier.

Authorizations
RIALTO_API_KEYstringRequired
Path parameters
webhookIdstring · uuidRequired

The unique identifier of the webhook.

Responses
delete
/webhooks/{webhookId}

No content

Last updated