Parameters

user
dictionary
email
string
Description
Valid email address associated with the user account (required for email-based auth).
dial_code
string
Description
Country dial code without the `+` sign (required for mobile-based auth).
mobile
string
Description
Mobile number without dial code (required for mobile-based auth).
POST/v1/users/password/recovery
curl https://api.tradly.app/v1/users/password/recovery \
  -H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -X POST \
  -d '{
  "user": {
    "email": "your_name@example.com"
  }
}'
RESPONSE
{
  "status": true,
  "data": {
    "verify_id": 1
  }
}