Users
Activate User
Activate user associated with the provided email within the tenant.
PATCH
/
api
/
svc
/
v1
/
users
/
activate
curl --request PATCH \
--url https://{controlPlaneURL}/api/svc/v1/users/activate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>"
}'
{}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Email of the user
Response
200
application/json
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>"
}'
{}