POST Account/ResetPassword
Request Information
URI Parameters
None.
Body Parameters
AuthenticationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyCode | string |
None. |
|
| UserName | string |
None. |
|
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompanyCode": "sample string 1",
"UserName": "sample string 2",
"Password": "sample string 3"
}
application/xml, text/xml
Sample:
<AuthenticationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Audatex.AudaMobile.WebApi.Models.Authentication"> <CompanyCode>sample string 1</CompanyCode> <Password>sample string 3</Password> <UserName>sample string 2</UserName> </AuthenticationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
WebApiResultOfPasswordResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Data | PasswordResponseModel |
None. |
|
| ErrorMessage | string |
None. |
|
| Exception | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Data": {
"Success": true,
"Message": "sample string 2",
"Status": "sample string 3"
},
"ErrorMessage": "sample string 2",
"Exception": "sample string 3"
}
application/xml, text/xml
Sample:
<WebApiResultOfPasswordResponseModel1J5gypZp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Audatex.AudaMobile.WebApi.Models">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Audatex.AudaMobile.WebApi.Models.Authentication">
<d2p1:Message>sample string 2</d2p1:Message>
<d2p1:Status>sample string 3</d2p1:Status>
<d2p1:Success>true</d2p1:Success>
</Data>
<ErrorMessage>sample string 2</ErrorMessage>
<Exception>sample string 3</Exception>
<Success>true</Success>
</WebApiResultOfPasswordResponseModel1J5gypZp>