POST api/client/CheckEmailForFree
Проверяет принадлежит ли email какому-либо участнику ПЛ
Request Information
URI Parameters
None.
Body Parameters
ClientEmailIsFreeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| Operator | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"Operator": 2
}
application/xml, text/xml
Sample:
<ClientEmailIsFreeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LCManager.Infrastructure.Request"> <Email>sample string 1</Email> <Operator>2</Operator> </ClientEmailIsFreeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ClientEmailIsFreeResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsFree | boolean |
None. |
|
| ErrorCode | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsFree": true,
"ErrorCode": 2,
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<ClientEmailIsFreeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LCManager.Infrastructure.Response"> <ErrorCode>2</ErrorCode> <Message>sample string 3</Message> <IsFree>true</IsFree> </ClientEmailIsFreeResponse>