Skip to main content
POST
/
v1
/
org
/
{org_id}
/
invite
curl --request POST \
  --url https://api.management.junction.com/v1/org/{org_id}/invite \
  --header 'Content-Type: application/json' \
  --header 'X-Vital-Org-Key: <api-key>' \
  --data '{
  "email": "<string>"
}'
{
  "status": "invite_created"
}
The base URL of this endpoint is https://api.management.junction.com/.The endpoint accepts only Management Key (X-Management-Key). Team API Key is not accepted.
curl --request POST \
  --url https://api.management.junction.com/v1/org/{org_id}/invite \
  --header 'Content-Type: application/json' \
  --header 'X-Vital-Org-Key: <api-key>' \
  --data '{
  "email": "<string>"
}'

Authorizations

X-Management-Key
string
header
required

Path Parameters

org_id
string<uuid>
required

Body

application/json
email
string
required
role
default:org_admin
Available options:
org_admin,
team_admin
team_role_bindings
TeamRoleBinding · object[] | null

Response

Successful Response

status
enum<string>
required
Available options:
invite_created,
invite_resent,
already_in_org
I