POST
/
webhooks
curl --request POST \
  --url https://api.carbon.ai/webhooks \
  --header 'Content-Type: application/json' \
  --header 'authorization: <api-key>' \
  --data '{
  "pagination": {
    "limit": 10,
    "offset": 0,
    "starting_id": 0
  },
  "order_by": "updated_at",
  "order_dir": "asc",
  "filters": {
    "ids": []
  }
}'
{
  "results": [
    {
      "id": 123,
      "organization_id": 123,
      "url": "<string>",
      "status": "ACTIVE",
      "status_reason": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "count": 123
}

Authorizations

authorization
string
header
required

Bearer <token>, corresponds to API keys.

Body

application/json
pagination
object
order_by
enum<string>
Available options:
created_at,
updated_at
order_dir
enum<string>
Available options:
desc,
asc
filters
object

Response

200
application/json
Successful Response
results
object[]
required
count
integer
required