POST api/user/ResetDefaultPasswords

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ResetPasswordResponse
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

updated_count

integer

None.

updated_customers

Collection of CustomerPasswordInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "updated_count": 3,
  "updated_customers": [
    {
      "CustomerId": 1,
      "NewPassword": "sample string 2"
    },
    {
      "CustomerId": 1,
      "NewPassword": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<ResetPasswordResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CustomerApp.Models">
  <message>sample string 2</message>
  <success>true</success>
  <updated_count>3</updated_count>
  <updated_customers>
    <CustomerPasswordInfo>
      <CustomerId>1</CustomerId>
      <NewPassword>sample string 2</NewPassword>
    </CustomerPasswordInfo>
    <CustomerPasswordInfo>
      <CustomerId>1</CustomerId>
      <NewPassword>sample string 2</NewPassword>
    </CustomerPasswordInfo>
  </updated_customers>
</ResetPasswordResponse>