Skip to main content

Create webhook subscription

Create webhook subscription

Endpoint

POST /api/v1/webhooks

Parameters

Not provided in the generated specification.

Request Schema

{
"title": "Body",
"body": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string"
},
"events": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}

Response Codes

{
"responses": {
"200": {
"description": "Webhook created"
}
}
}