v1

latestOpenAPI 3.1.02026-07-261620662.2 KB

Lista de webhooks

O método permite obter uma lista de webhooks.

get/api/v4/webhooks

Query parameters

filter[destination]string

Filtrar pela URL do webhook

Response

200

_total_itemsinteger

Example response

{
  "_total_items": 2,
  "_embedded": {
    "webhooks": [
      {
        "id": 839656,
        "destination": "https://webhook-uri.com",
        "created_at": 1575539157,
        "updated_at": 1575539157,
        "account_id": 321321,
        "created_by": 123123,
        "sort": 1,
        "settings": [
          "add_task"
        ]
      }
    ]
  }
}