curl --request POST \
--url https://api.example.com/api/v2/users \
--header 'Content-Type: application/json' \
--data '
{
"users": [
{
"displayName": "<string>",
"tenantId": "<string>",
"userId": "<string>",
"email": "<string>",
"isOwner": true
}
],
"assignToWorkspace": true
}
'