Skip to content

Sources API

Base path: /api/sources

GET /api/sources

Returns all sources.

POST /api/sources
Content-Type: application/json
{
"name": "My App",
"slug": "my-app"
}
FieldTypeRequiredDescription
namestringYesDisplay name
slugstringYesURL-safe identifier, used in webhook URL
GET /api/sources/{slug}
PATCH /api/sources/{slug}
Content-Type: application/json
{
"name": "Updated Name"
}
DELETE /api/sources/{slug}