POST /api/AddRelative/{patientId}

POST /api/AddRelative/{patientId}

Path parameters

  • patientId integer(int32) Required

Body

  • firstName string | null
  • lastName string | null
  • ssn string | null
  • password string | null
  • birthDate string(date-time)
  • city string | null
  • street string | null
  • zipCode string | null
  • relationshipDegree string | null
  • Additional properties are NOT allowed

Responses

  • 200

    Success

POST /api/AddRelative/{patientId}
curl \
 --request POST 'http://alzaware.runasp.net/api/AddRelative/{patientId}' \
 --header "Content-Type: application/json" \
 --data '{"firstName":"string","lastName":"string","ssn":"string","password":"string","birthDate":"2025-05-04T09:42:00Z","city":"string","street":"string","zipCode":"string","relationshipDegree":"string"}'
curl \
 --request POST 'http://alzaware.runasp.net/api/AddRelative/{patientId}' \
 --header "Content-Type: text/json"
curl \
 --request POST 'http://alzaware.runasp.net/api/AddRelative/{patientId}' \
 --header "Content-Type: application/*+json"
Request examples
{
  "firstName": "string",
  "lastName": "string",
  "ssn": "string",
  "password": "string",
  "birthDate": "2025-05-04T09:42:00Z",
  "city": "string",
  "street": "string",
  "zipCode": "string",
  "relationshipDegree": "string"
}