Authorizations
Body
application/json
The input required to invite users to an organisation
Array of email addresses that should be invited
Minimum length:
1
curl --request POST \
--url https://{subdomain}.nudj.cx/api/v2/admin/teams/invite \
--header 'Content-Type: application/json' \
--header 'x-api-token: <api-key>' \
--data '{
"emails": [
"jsmith@example.com"
]
}'
{
"success": true,
"message": "<string>",
"results": [
{
"email": "<string>",
"success": true,
"message": "<string>"
}
]
}
Invite users to an organisation by email address.
curl --request POST \
--url https://{subdomain}.nudj.cx/api/v2/admin/teams/invite \
--header 'Content-Type: application/json' \
--header 'x-api-token: <api-key>' \
--data '{
"emails": [
"jsmith@example.com"
]
}'
{
"success": true,
"message": "<string>",
"results": [
{
"email": "<string>",
"success": true,
"message": "<string>"
}
]
}
The input required to invite users to an organisation
Array of email addresses that should be invited
1
Was this page helpful?