GET
/
api
/
v1
/
agent-config
/
by-id
/
{config_id}
Get Agent Config By Id
curl --request GET \
  --url https://services.staging.app.dados.rio/eai-agent/api/v1/agent-config/by-id/{config_id} \
  --header 'Authorization: Bearer <token>'
{
  "config_id": "<string>",
  "agent_type": "<string>",
  "version": 123,
  "memory_blocks": [
    {}
  ],
  "tools": [
    "<string>"
  ],
  "model_name": "<string>",
  "embedding_name": "<string>",
  "created_at": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

config_id
string
required

Response

200
application/json

Successful Response

The response is of type object.