GET

/webhook-receivers

Returns a list of WebhookReceiver objects.


Header Parameters


AuthorizationString
Required
Token-based authentication with required prefix "Bearer"

X-Account-TokenString
Required
Token identifying the end user.
Response
JSON
[
{
"event": "string",
"is_active": true,
"key": "string"
}
]
POST

/webhook-receivers

Creates a WebhookReceiver object with the given values.


Header Parameters


AuthorizationString
Required
Token-based authentication with required prefix "Bearer"

X-Account-TokenString
Required
Token identifying the end user.

Body Parameters


eventString
Required

is_activeBoolean
Required

keyString
Required
POST v1/webhook-receivers
JSON
{
"event": "string",
"is_active": true,
"key": "string"
}
Response
JSON
{
"event": "string",
"is_active": true,
"key": "string"
}