curl --request POST \
--url https://api.pelanor.io/v2/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"invites": [
{
"email": "<string>",
"name": "<string>",
"assignments": [
{
"workspaceId": "<string>",
"role": "ADMIN"
}
]
}
]
}
'