curl \
 --request PUT 'http://mamaguide.runasp.net/api/Doctor/update' \
 --header "Content-Type: application/json" \
 --data '{"firstName":"string","lastName":"string","specialization":"string","city":"string","governorate":"string"}'
curl \
 --request PUT 'http://mamaguide.runasp.net/api/Doctor/update' \
 --header "Content-Type: text/json"
curl \
 --request PUT 'http://mamaguide.runasp.net/api/Doctor/update' \
 --header "Content-Type: application/*+json"
Request examples
{
  "firstName": "string",
  "lastName": "string",
  "specialization": "string",
  "city": "string",
  "governorate": "string"
}