Skip to main content
GET
/
agents
/
{agent_id}
/
system-steps
List agent system steps
curl --request GET \
  --url https://api.trymaitai.ai/api/v1/agents/{agent_id}/system-steps \
  --header 'X-Maitai-Api-Key: <api-key>'
{
  "data": {
    "application_id": 42,
    "steps": [
      {
        "step": "orchestration",
        "action_type": "orchestration",
        "is_override": false
      },
      {
        "step": "respond",
        "action_type": "final_response",
        "is_override": true
      }
    ]
  }
}

Authorizations

X-Maitai-Api-Key
string
header
required

Your Maitai API key from the Portal.

Path Parameters

agent_id
integer
required

Response

200 - application/json

List agent system steps.

data
any