Updates the authenticated user's profile.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/jsonRequired
{
"name": "Ahmed Al-Rashid",
"phone": "+201234567890",
"locale": "en"
}
Responses
{
"success": true,
"message": "Profile updated successfully",
"data": {
"id": 1,
"name": "Ahmed Al-Rashid",
"email": "ahmed@profitflow.com",
"phone": "+966501234567",
"locale": "en",
"created_at": "2024-01-15T10:30:00+00:00",
"updated_at": "2024-01-20T14:45:00+00:00"
}
}
Modified at 2026-03-12 00:48:26