Skip to main content
POST
/
v1
/
users
/
{id}
/
email
/
activate-user
Send activate user email
curl --request POST \
  --url https://api.example.com/v1/users/{id}/email/activate-user \
  --header 'Content-Type: application/json' \
  --data '
{
  "permission": "permissionId"
}
'
If a user doesn’t receive the activation email, you can call this route and the link will be sent to him again. You need the permissionId from the invite-user response

Path Parameters

id
string
required

Body

application/json
permission
string
required

Response

204

ok