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

Authorizations

Authorization
string
header
required

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

Path Parameters

app_id
string
required

Body

application/json
name
string | null
Required string length: 1 - 100
slug
string | null
description
string | null
agent
Agent · object
workflows
Workflows · object[] | null
interfaces
Interfaces · object
runtime_profile
Runtime Profile · object
status
string | null
Pattern: ^(draft|active|archived)$

Response

Successful Response