v1
latestOpenAPI 3.1.02026-07-14159142161.9 KBincoming webhooks (usersService)
Create Incoming Webhook
Creates a new incoming webhook. Available only for admin users.
post/company/v1/incoming_webhooks
Request body
Example request
{
"name": "CRM + Tasks",
"active": true,
"permissions": [
{
"service": "crm"
},
{
"service": "tasks"
}
]
}Response
OK
Example response
{
"id": 14,
"name": "CRM + Tasks",
"active": true,
"user_id": 1,
"created_at": 1732739313,
"updated_at": 1732739313,
"permissions": [
{
"service": "crm"
},
{
"service": "tasks"
}
],
"webhook_url": "https://domain.uspacy.ua/company/v1/incoming_webhooks/run/biUPE8eDUqfZoguv03AqISYEWkSd6BZD"
}