v1

latestOpenAPI 3.1.02026-07-14159142161.9 KB
incoming webhooks (usersService)

Retrieve Incoming Webhooks List

Retrieves a list of incoming webhooks added by the user. Available only for admin users.

get/company/v1/incoming_webhooks

Query parameters

pageinteger

current page

listnumber

how many items should be per page

activeboolean

Active

integer[]
userIdinteger

User id

permissions[]string[]

Filter results by specified permissions. Multiple values can be provided.

namestring

Name

Response

OK

Example response

{
  "data": [
    {
      "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"
    }
  ],
  "meta": {
    "currentPage": 1,
    "from": 1,
    "lastPage": 1,
    "links": [
      {
        "label": "Previous"
      }
    ],
    "path": "https://domain.uspacy.ua/groups/v1/groups",
    "perPage": 20,
    "to": 2,
    "total": 2
  }
}