POST
/v1/admin/orgs/{org_id}/signal-schemas
curl \
--request POST 'http://api.example.com/v1/admin/orgs/{org_id}/signal-schemas' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"signal_type":"string","json_schema":{}}'
Request examples
{
"signal_type": "string",
"json_schema": {}
}
Response examples (201)
{
"id": "string",
"org_id": "string",
"signal_type": "string",
"json_schema": {},
"version": 42,
"active": true,
"created_at": "2026-05-04T09:42:00Z",
"updated_at": "2026-05-04T09:42:00Z"
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"ctx": {}
}
]
}