curl --location --request PUT 'https://test.your-api-server.com/client/profile' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Ahmed Updated",
"email": "ahmed.updated@example.com",
"company_name": "TechNova Solutions Updated LLC",
"company_info": "Updated description for the company",
"website": "https://www.technova-updated.com",
"location": "Los Angeles, USA"
}'