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": [
"[email protected]"
]
}
'{
"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": [
"[email protected]"
]
}
'{
"success": true,
"results": [
{
"email": "<string>",
"success": true,
"message": "<string>"
}
],
"message": "<string>"
}The input required to invite users to an organisation
Array of email addresses that should be invited
1Was this page helpful?