PUT /api/Patient/{id}

PUT /api/Patient/{id}

Path parameters

  • id integer(int32) Required

Body

curl \
 --request PUT 'http://alzaware.runasp.net/api/Patient/{id}' \
 --header "Content-Type: application/json" \
 --data '{"firstName":"string","lastName":"string","city":"string","street":"string","zipCode":"string","phone":"string"}'
curl \
 --request PUT 'http://alzaware.runasp.net/api/Patient/{id}' \
 --header "Content-Type: text/json"
curl \
 --request PUT 'http://alzaware.runasp.net/api/Patient/{id}' \
 --header "Content-Type: application/*+json"
Request examples
{
  "firstName": "string",
  "lastName": "string",
  "city": "string",
  "street": "string",
  "zipCode": "string",
  "phone": "string"
}