Webhooks
View Webhooks
API Documentation
Health
Files
Web Scrape
Data Source
SharePoint
GitHub
Chunks / Embeddings
Retrieval
Webhooks
View Webhooks
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
Bearer <token>
, corresponds to API keys.
Body
application/json
Available options:
created_at
, updated_at
Available options:
desc
, asc
Response
200
application/json
Successful Response
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
}