POST api/ChangeProfile

Request Information

URI Parameters

None.

Body Parameters

ChangePasswordModel
NameDescriptionTypeAdditional information
Id

integer

None.

OldPassword

string

None.

Password

string

None.

Fullname

string

None.

EmailAddress

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "OldPassword": "sample string 2",
  "Password": "sample string 3",
  "Fullname": "sample string 4",
  "EmailAddress": "sample string 5"
}

application/xml, text/xml

Sample:
<ChangePasswordModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/konsulta_api.Models">
  <EmailAddress>sample string 5</EmailAddress>
  <Fullname>sample string 4</Fullname>
  <Id>1</Id>
  <OldPassword>sample string 2</OldPassword>
  <Password>sample string 3</Password>
</ChangePasswordModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.