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,
"results": [
{
"email": "<string>",
"success": true,
"message": "<string>"
}
],
"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,
"results": [
{
"email": "<string>",
"success": true,
"message": "<string>"
}
],
"message": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.nudj.cx/llms.txt
Use this file to discover all available pages before exploring further.
The input required to invite users to an organisation
Array of email addresses that should be invited
1Was this page helpful?