Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Email of the user
Response
User has been successfully activated.
The response is of type object.
curl --request PATCH \
--url https://{controlPlaneURL}/api/svc/v1/users/activate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>"
}'{}Activate user associated with the provided email within the tenant.
curl --request PATCH \
--url https://{controlPlaneURL}/api/svc/v1/users/activate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>"
}'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Email of the user
User has been successfully activated.
The response is of type object.
Was this page helpful?