Settings

Endpoints for managing settings

Get all webhook target URLs

get

This endpoint retrieves all webhook target URLs.

Authorizations
Responses
200
A list of webhook target URLs
application/json
get
GET /api/v1/settings/webhook-target-urls HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Accept: */*
[]

Set webhook target URLs

put

This endpoint allows you to set webhook target URLs.

Authorizations
Body
urlsstring · uri[]OptionalExample: http://example.com/webhook
Responses
200
Webhook target URLs set successfully
application/json
put
PUT /api/v1/settings/webhook-target-urls HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 39

{
  "urls": [
    "http://example.com/webhook"
  ]
}
[]

Was this helpful?