Skip to main content
PATCH
/
apps
/
{app_id}
/
members
/
{member_user_id}
Patch App Member Role
curl --request PATCH \
  --url https://api.ara.so/apps/{app_id}/members/{member_user_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "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
member_user_id
string
required

Body

application/json
role
string
required
Pattern: ^(viewer|operator|editor)$

Response

Successful Response