post
/v1/my/passwordChange password
Requires Authentication
My
Changes the current user's password
Request Body
required
currentPasswordstring
required
newPasswordstring
required
confirmPasswordstring
required
- Must match newPasswordResponses
Password changed successfully
Code Examples
curl -X POST 'https://api-next.checkio.co.uk/v1/my/password' \
-H 'Authorization: Bearer {token}' \
-H 'Content-Type: application/json' \
-d '{
"currentPassword": "string",
"newPassword": "string",
"confirmPassword": "string"
}'