Skip to main content
POST
/
agents
/
disallow_type
Disallow Agent Type
curl --request POST \
  --url https://api.svantic.com/agents/disallow_type \
  --header 'Content-Type: application/json' \
  --data '
{
  "tenant_id": "acme-corp",
  "agent_type": "document-processor"
}
'
{
  "ok": true,
  "agent_type": "document-processor",
  "removed_from_policy": true,
  "deregistered_count": 2
}

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.

Body

application/json
tenant_id
string
required

The tenant whose allow-list to modify.

Example:

"acme-corp"

agent_type
string
required

The agent type identifier to allow or disallow.

Example:

"document-processor"

Response

Agent type removed from allow-list and instances deregistered.

ok
boolean
Example:

true

agent_type
string

The agent type that was disallowed.

Example:

"document-processor"

removed_from_policy
boolean

true if the type was found and removed from the allow-list. false if it was not in the list.

Example:

true

deregistered_count
integer

Number of running instances that were cascade-deregistered.

Example:

2