API referenceEndpoints

Get application knowledge-agent policy

Requires an application credential holding the application-admin role; the credential names the application it acts for. Generated from the production route registered in `internal/features/knowledgeagent/inbound/http_application.go`.

GET/v1/application/agents/knowledge/policy

Requires an application credential holding the application-admin role; the credential names the application it acts for. Generated from the production route registered in internal/features/knowledgeagent/inbound/http_application.go.

Authorization

bearerAuth
AuthorizationBearer <token>

Engine-issued API key or tenant-signed JWT.

In: header

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/application/agents/knowledge/policy"
{  "scope": "application",  "source": "application",  "version": 0,  "policy": {    "max_datasets": 10,    "max_model_calls": 4,    "max_tool_calls": 6,    "max_searches": 4,    "max_results_per_search": 6,    "max_evidence_chars": 24000,    "max_read_ids": 6,    "max_output_tokens": 1500,    "max_wall_time_seconds": 45,    "max_spend_micro_usd": 250000  },  "effective": {    "max_datasets": 10,    "max_model_calls": 4,    "max_tool_calls": 6,    "max_searches": 4,    "max_results_per_search": 6,    "max_evidence_chars": 24000,    "max_read_ids": 6,    "max_output_tokens": 1500,    "max_wall_time_seconds": 45,    "max_spend_micro_usd": 250000  }}