PUT /api/Relative/UpdateRelative

PUT /api/Relative/UpdateRelative

Body

  • id string | null
  • firstName string | null
  • lastName string | null
  • phoneNumber string | null
  • address string | null
  • ssn string | null
  • dateOfBirth string(date-time)
  • Additional properties are NOT allowed

Responses

  • 200

    Success

curl \
 -X PUT http://api.example.com/api/Relative/UpdateRelative \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json-patch+json"
curl \
 -X PUT http://api.example.com/api/Relative/UpdateRelative \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"id":"string","firstName":"string","lastName":"string","phoneNumber":"string","address":"string","ssn":"string","dateOfBirth":"2024-05-04T09:42:00+00:00"}'
curl \
 -X PUT http://api.example.com/api/Relative/UpdateRelative \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: text/json"
curl \
 -X PUT http://api.example.com/api/Relative/UpdateRelative \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/*+json"
Request examples
{
  "id": "string",
  "firstName": "string",
  "lastName": "string",
  "phoneNumber": "string",
  "address": "string",
  "ssn": "string",
  "dateOfBirth": "2025-05-04T09:42:00Z"
}
Request examples
{
  "id": "string",
  "firstName": "string",
  "lastName": "string",
  "phoneNumber": "string",
  "address": "string",
  "ssn": "string",
  "dateOfBirth": "2025-05-04T09:42:00Z"
}