Add an agent type to the tenant’s allow-list. Once allowed, agents of this type can register via POST /agents/register even when the tenant’s policy_mode is allow-list. Idempotent — returns was_new: false if the type is already in the list.
curl --request POST \
--url https://api.svantic.com/agents/allow_type \
--header 'Content-Type: application/json' \
--data '
{
"tenant_id": "acme-corp",
"agent_type": "document-processor"
}
'{
"ok": true,
"agent_type": "document-processor",
"was_new": true
}Documentation Index
Fetch the complete documentation index at: https://docs.svantic.com/llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.svantic.com/agents/allow_type \
--header 'Content-Type: application/json' \
--data '
{
"tenant_id": "acme-corp",
"agent_type": "document-processor"
}
'{
"ok": true,
"agent_type": "document-processor",
"was_new": true
}