PUT api/common/sendemailotp
Request Information
URI Parameters
None.
Body Parameters
APIEmailAuthRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AppName | string |
None. |
|
| string |
None. |
||
| CustomerId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"AppName": "sample string 1",
"Email": "sample string 2",
"CustomerId": 3
}
application/xml, text/xml
Sample:
<APIEmailAuthRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <CustomerId>3</CustomerId> <Email>sample string 2</Email> <AppName>sample string 1</AppName> </APIEmailAuthRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIEmailAuthResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Message | string |
None. |
|
| OTP | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Message": "sample string 2",
"OTP": "sample string 3"
}
application/xml, text/xml
Sample:
<APIEmailAuthResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <Message>sample string 2</Message> <OTP>sample string 3</OTP> <Status>true</Status> </APIEmailAuthResult>