POST api/login/changepassword

Request Information

URI Parameters

None.

Body Parameters

apiLoginChangePasswordRequest
NameDescriptionTypeAdditional information
newPassword

string

None.

token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "newPassword": "sample string 1",
  "token": "sample string 2"
}

application/xml, text/xml

Sample:
<apiLoginChangePasswordRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSDeliveryWebApp.Models">
  <newPassword>sample string 1</newPassword>
  <token>sample string 2</token>
</apiLoginChangePasswordRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'apiLoginChangePasswordRequest'.

Response Information

Resource Description

apiResult
NameDescriptionTypeAdditional information
status

apiResultState

None.

statusString

string

None.

message

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 0,
  "statusString": "ok",
  "message": "sample string 1",
  "data": {}
}

application/xml, text/xml

Sample:
<apiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSDeliveryWebApp.Models">
  <data />
  <message>sample string 1</message>
  <status>ok</status>
</apiResult>