POST api/v1/accounts/ResetPasswordWithToken

Request Information

URI Parameters

None.

Body Parameters

ResetPasswordWithTokenDto
NameDescriptionTypeAdditional information
OrganizationCode

string

None.

Username

string

None.

NewPassword

string

None.

Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "organizationCode": "sample string 1",
  "username": "sample string 2",
  "newPassword": "sample string 3",
  "token": "sample string 4"
}

application/xml, text/xml

Sample:
<ResetPasswordWithTokenDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.Services.Dtos.AccountManagement">
  <NewPassword>sample string 3</NewPassword>
  <OrganizationCode>sample string 1</OrganizationCode>
  <Token>sample string 4</Token>
  <Username>sample string 2</Username>
</ResetPasswordWithTokenDto>

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.