POST api/Account/ForgotPassword
Request Information
URI Parameters
None.
Body Parameters
ForgotPasswordRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| IdentificationNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdentificationNumber": "sample string 1"
}
application/xml, text/xml
Sample:
<ForgotPasswordRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile"> <IdentificationNumber>sample string 1</IdentificationNumber> </ForgotPasswordRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ForgotPasswordResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| SuccessMessage | string |
None. |
|
| Result | ResultType |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"SuccessMessage": "sample string 1",
"Result": 0,
"ErrorMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ForgotPasswordResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile"> <_x003C_ErrorMessage_x003E_k__BackingField>sample string 2</_x003C_ErrorMessage_x003E_k__BackingField> <_x003C_Result_x003E_k__BackingField>Success</_x003C_Result_x003E_k__BackingField> <SuccessMessage>sample string 1</SuccessMessage> </ForgotPasswordResponse>