Reset password for a user
Get /users/{id}/reset
Reset password for a user by sending an email to change it
Parameters:
| Name | Description | Type | Mandatory |
|---|---|---|---|
| id | User Id | String | Yes |
Response:
| Name | Description | Type |
|---|---|---|
| status | success / failure | String |
Programming language:
Response exemple:
{
"status": "success"
}
Code example:
curl -X GET -H "Content-Type: application/json" -H "X-Tipimail-ApiUser:YOUR_SMTP_USERNAME" -H "X-Tipimail-ApiKey:YOUR_SMTP_KEY" https://api.tipimail.com/v1/users/f4re5f5re4gre7gre8g87g58/reset
require 'vendor/autoload.php';
$tipimail = new Tipimail\Tipimail('YOUR_SMTP_USERNAME', 'YOUR_API_KEY');
try {
$tipimail->getUsersService()->resetPassword('646r54g6r4gr6g46g46546d4');
}
catch(Tipimail\Exceptions\TipimailException $e) {
echo 'Exception received :', $e->getMessage(), "\n";
}