cURL
curl --request POST \ --url https://jamquest-dev.techboo.net/api/v1/user/update-personal-info \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "email": "[email protected]", "phone": "<string>" } '
{ "status": "ok", "data": { "message": "Personal information updated successfully", "user": { "name": "<string>", "email": "[email protected]", "phone": "<string>", "email_verified": true, "phone_verified": true } } }
Access token obtained during login or registration. Use this token in the Authorization header for authenticated requests.
Personal information updated successfully
"ok"
Show child attributes
"Personal information updated successfully"