POST api/v1/user/password/verification

Verify email and set a new password

Request Information

Headers

URI Parameters

None.

Body Parameters

PasswordVerify
NameDescriptionTypeAdditional information
Guid

The unique identifier.

globally unique identifier

Required

Password

The new password.

string

Required

Request Formats

application/json

Sample:
{
  "Guid": "10a75356-e7e5-4beb-beb1-f6bb047d084e",
  "Password": "sample string 2"
}

Response Information

Headers

Resource Description

Application Status - Result, Status code, Message

Application Accept - AA, 200, The username of the user

Application Reject - AR, 400, No verification found

Application Reject - AR, 400, Verification is out of date"

Application Reject - AE, 500, Failed to update password

Response
NameDescriptionTypeAdditional information
Result

Result of the response

string

None.

Message

Additional information of the response

string

None.

Response Formats

application/json

Sample:
{
  "Result": "sample string 1",
  "Message": "sample string 2"
}