GET
/
api
/
v1
/
agent-config
/
history
Get Agent Config History
curl --request GET \
  --url https://services.staging.app.dados.rio/eai-agent/api/v1/agent-config/history \
  --header 'Authorization: Bearer <token>'
{
  "agent_type": "<string>",
  "configs": [
    {
      "config_id": "<string>",
      "version": 123,
      "is_active": true,
      "created_at": "<string>",
      "updated_at": "<string>",
      "metadata": {},
      "tools": [
        "<string>"
      ],
      "model_name": "<string>",
      "embedding_name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

agent_type
string
default:agentic_search
limit
integer
default:10

Limite de resultados

Required range: x >= 1

Response

200
application/json

Successful Response

The response is of type object.