POST
/
agents
curl --request POST \
  --url https://api.sentio.ai/agents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "type": "<string>",
  "description": "<string>",
  "networks": [
    "<string>"
  ],
  "triggers": [
    {}
  ],
  "actions": [
    {}
  ],
  "id": 123
}'
{
  "name": "<string>",
  "type": "<string>",
  "description": "<string>",
  "networks": [
    "<string>"
  ],
  "triggers": [
    {}
  ],
  "actions": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Agent configuration to create

The body is of type object.

Response

200
application/json

Agent created successfully

The response is of type object.