Skip to main content
POST
/
apps
/
{app_id}
/
members
Add App Member
curl --request POST \
  --url https://api.ara.so/apps/{app_id}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "<string>",
  "role": "<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
user_id
string
required
role
string
required
Pattern: ^(viewer|operator|editor)$

Response

Successful Response