# Generate activation token Generate a new activation token for a user. Provide the user's ID as a path parameter. This route does not send the activation email but returns the activation link and token. It can be used in combination with the routes under Users Activation. A valid environment token is required to call this endpoint. You can obtain it from the environment authentication route. Endpoint: POST /resources/users/v1/{userId}/links/generate-activation-token Security: bearer ## Path parameters: - `userId` (string, required) ## Response 201 fields (application/json): - `link` (string, required) - `token` (string, required) - `userId` (string, required)