Checkio API
post/v1/my/password

Change password

Requires Authentication
My

Changes the current user's password

Request Body

required
currentPassword
string
required
newPassword
string
required
confirmPassword
string
required
- Must match newPassword

Responses

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"
}'