Settings
Endpoints for managing settings
This endpoint retrieves all webhook target URLs.
Authorizations
Responses
200
A list of webhook target URLs
application/json
401
Unauthorized.
500
Internal Server Error
application/json
get
GET /api/v1/settings/webhook-target-urls HTTP/1.1
Host:
x-api-key: YOUR_API_KEY
Accept: */*
[]
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
400
Bad request. Invalid parameters.
application/json
401
Unauthorized.
500
Internal Server Error
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?