Skip to main content
POST
/
apps
Create App
curl --request POST \
  --url https://api.ara.so/apps \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "slug": "<string>",
  "description": "<string>",
  "agent": {},
  "workflows": [
    {}
  ],
  "interfaces": {},
  "runtime_profile": {}
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}
Create once, then keep it updated with PATCH /apps/{app_id}.

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
Required string length: 1 - 100
slug
string | null
description
string | null
agent
Agent · object
workflows
Workflows · object[]
interfaces
Interfaces · object
runtime_profile
Runtime Profile · object

Response

Successful Response