PUT user/update-user-settings

Request Information

URI Parameters

None.

Body Parameters

UserSettingModel
NameDescriptionTypeAdditional information
UserId

integer

None.

SurgeryDate

date

None.

Email

string

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "SurgeryDate": "2023-03-21T05:31:21.6324942-07:00",
  "Email": "sample string 3",
  "Password": "sample string 4"
}

application/xml, text/xml

Sample:
<UserSettingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DrAhmedElMasryApi.Models">
  <Email>sample string 3</Email>
  <Password>sample string 4</Password>
  <SurgeryDate>2023-03-21T05:31:21.6324942-07:00</SurgeryDate>
  <UserId>1</UserId>
</UserSettingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UserSettingDto
NameDescriptionTypeAdditional information
SurgeryDate

date

None.

Email

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SurgeryDate": "2023-03-21T05:31:21.6481182-07:00",
  "Email": "sample string 2"
}

application/xml, text/xml

Sample:
<UserSettingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DrAhmedElMasryApi.Dto">
  <Email>sample string 2</Email>
  <SurgeryDate>2023-03-21T05:31:21.6481182-07:00</SurgeryDate>
</UserSettingDto>