Activate Account by Tenant ID and Email
PUT /api/v1/users/{email}/tenants/{tenantId}/account/activate/public
Description
Activate a user account by tenant ID and email.
Path Parameters
| Name | Type | Description |
|---|---|---|
email | string | The user's email (path) |
tenantId | string | The tenant ID (path) |
Request Body
- Content Type:
application/json
{
"comment": "string",
"password": "string"
}
Response Code: 200 - OK
Description
Account activated successfully.
Method: PUT
>http://your-api-url/api/v1/users/{email}/tenants/{tenantId}/account/activate/public
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
Body
{
"comment": "Activation comment",
"password": "userPassword"
}
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request PUT \
--url /api/v1/users/{email}/tenants/{tenantId}/account/activate/public \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!