POST
/
org
/
member
curl --request POST \
  --url https://svc.sandbox.anon.com/org/member \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "email": "<string>",
  "password": "<string>",
  "role": "<string>"
}'
{
  "id": "<string>",
  "name": "<string>",
  "email": "<string>",
  "organizationId": "<string>",
  "role": "<string>"
}

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
email
string
required
password
string
required
role
required
Allowed value: "Admin"

Response

200
application/json

Members of an organization can create api keys, user pools, and sdk clients

id
string
required
name
string
required
email
string
required
organizationId
string
required
role
required
Allowed value: "Admin"

Was this page helpful?