Skip to main content
POST
/
organisations
/
members
Create Member
curl --request POST \
  --url https://api.example.com/organisations/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "[email protected]",
  "permission_level": "VIEWER"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

Api-key
string | null

Body

application/json
name
string
required
email
string<email>
required
permission_level
enum<string>
required
Available options:
VIEWER,
BUILDER,
ADMIN

Response

Successful Response