POST Api/TMaasLogin
Allows login and token map generation in a single call.
Request Information
URI Parameters
None.
Body Parameters
LoginModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EmailAddress | string |
Required |
|
| Password | string |
Required |
|
| IpAddress | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmailAddress": "sample string 1",
"Password": "sample string 2",
"IpAddress": "sample string 3"
}
application/xml, text/xml
Sample:
<LoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Evidon.Auth.Shared.Standard.Models.Token"> <EmailAddress>sample string 1</EmailAddress> <IpAddress>sample string 3</IpAddress> <Password>sample string 2</Password> </LoginModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BoolMessageResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeeded | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeeded": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<BoolMessageResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Evidon.Auth.Shared.Standard.Models.General"> <Message>sample string 2</Message> <Succeeded>true</Succeeded> </BoolMessageResult>