Setting up with API calls

Get client many webhooks

get

Retrieve multiple webhook URLs for a client.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
activebooleanOptional

Filter active webhooks

uuids[]stringOptional

Filter by webhook UUIDs

Responses
200

OK

application/json
get
/webhook-url/get-many
200

OK

Create new webhook

post

Create a new webhook URL.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
webhookUrlstringRequired
Responses
post
/webhook-url/
201

Created

Update webhook URL

put

Update an existing webhook URL.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
uuid-webhookstringRequired

UUID of the webhook to update

Body
webhookUrlstringRequired
Responses
200

OK

application/json
put
/webhook-url/{uuid-webhook}
200

OK

Delete webhook URL

delete

Delete an existing webhook URL.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
uuid-webhookstringRequired

UUID of the webhook to delete

Responses
delete
/webhook-url/{uuid-webhook}
204

No Content

No content

Test webhook URL

post

Test an existing webhook URL.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
uuid-webhookstringRequired

UUID of the webhook to test

Responses
post
/webhook-url/test/{uuid-webhook}
204

No Content

No content

Last updated