curl --request POST \
--url https://api.example.com/v1/invites \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"tokenId": "123",
"email": "[email protected]",
"name": "John Doe",
"role": "Admin",
"policy": "Admin"
}
'