POST api/Values/CreatePassword
Request Information
URI Parameters
None.
Body Parameters
ChangePasswordModel| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| NewPassword | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"NewPassword": "sample string 2"
}
application/xml, text/xml
Sample:
<ChangePasswordModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuickSilverModel.Models"> <Email>sample string 1</Email> <NewPassword>sample string 2</NewPassword> </ChangePasswordModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RecurlySubscriptionStatuId | integer |
None. |
|
| Id | string |
None. |
|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"RecurlySubscriptionStatuId": 1,
"Id": "sample string 2",
"IsSuccess": true,
"Message": "sample string 4"
}
application/xml, text/xml
Sample:
<APIResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuickSilverModel.Responses"> <IsSuccess>true</IsSuccess> <Message>sample string 4</Message> <Id>sample string 2</Id> <RecurlySubscriptionStatuId>1</RecurlySubscriptionStatuId> </APIResponseModel>