POST api/MyAccess/RecoverPassword
Request Information
URI Parameters
None.
Body Parameters
LoginBE| Name | Description | Type | Additional information |
|---|---|---|---|
| loginid | string |
None. |
|
| pwd | string |
None. |
|
| string |
None. |
||
| contactId | integer |
None. |
|
| key | string |
None. |
|
| IpAddress | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"loginid": "sample string 1",
"pwd": "sample string 2",
"email": "sample string 3",
"contactId": 4,
"key": "sample string 5",
"IpAddress": "sample string 6"
}
application/xml, text/xml
Sample:
<LoginBE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SkyERP.BusinessEntity.Operator"> <IpAddress>sample string 6</IpAddress> <contactId>4</contactId> <email>sample string 3</email> <key>sample string 5</key> <loginid>sample string 1</loginid> <pwd>sample string 2</pwd> </LoginBE>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BoolResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| status | integer |
None. |
|
| message | string |
None. |
|
| hasError | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 1,
"message": "sample string 2",
"hasError": true
}
application/xml, text/xml
Sample:
<BoolResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SkyERP.BusinessEntity"> <hasError>true</hasError> <message>sample string 2</message> <status>1</status> </BoolResponse>