curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"emails": [
"<string>"
],
"dryRun": false
}'
{}
This endpoint allows tenant administrators to pre-register users within their tenant.
curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"emails": [
"<string>"
],
"dryRun": false
}'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The users have been successfully pre-registered.
The response is of type object
.
Was this page helpful?