Parameters

current_password
string
Required
Description
The user's current password.
new_password
string
Required
Description
The new password for the user account. Minimum 6 characters in length.
POST/v1/users/password/change
curl https://api.tradly.app/v1/users/password/change \
  -H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -X POST \
  -d '{
  "current_password": "CurrentPassword123!",
  "new_password": "NewSecurePassword123!"
}'
RESPONSE
{
  "status": true,
  "data": {}
}