POST WEYIServer/Provider/EmailTaken
Check if the email for a Provider is already in use.
Request Information
URI Parameters
None.
Body Parameters
ParaWebServer_Email| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| SecurityItem | ParaWebServerSecurity |
None. |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"SecurityItem": {
"GlobalId": 1,
"AuthKeyFrom": "sample string 2",
"AuthKeyTo": "sample string 3"
}
}
application/xml, text/xml
Sample:
<ParaWebServer_Email xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
<SecurityItem>
<AuthKeyFrom>sample string 2</AuthKeyFrom>
<AuthKeyTo>sample string 3</AuthKeyTo>
<GlobalId>1</GlobalId>
</SecurityItem>
<Email>sample string 1</Email>
</ParaWebServer_Email>
Response Information
Resource Description
ParaBool| Name | Description | Type | Additional information |
|---|---|---|---|
| bValue | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"bValue": true
}
application/xml, text/xml
Sample:
<ParaBool xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <bValue>true</bValue> </ParaBool>