POST v1/User/ResetPassword
Request Information
URI Parameters
None.
Body Parameters
ResetUserPasswordDto| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| UserId | integer |
None. |
|
| string |
None. |
||
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"customerId": 1,
"userId": 1,
"email": "sample string 1",
"password": "sample string 2"
}
application/xml, text/xml
Sample:
<ResetUserPasswordDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Brainstorm.Api.Models.DTO.Users"> <CustomerId>1</CustomerId> <Email>sample string 1</Email> <Password>sample string 2</Password> <UserId>1</UserId> </ResetUserPasswordDto>
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.