POST Entity/Auth
Retrieve Auth by token
Request Information
URI Parameters
None.
Body Parameters
Client's token
stringRequest Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Entity
Lluni.Models.Common.Wip.AuthDto| Name | Description | Type | Additional information |
|---|---|---|---|
| AuthCode | integer |
None. |
|
| EntityCode | integer |
Required |
|
| EntityName | string |
None. |
|
| Description | string |
None. |
|
| CodeName | string |
None. |
|
| ClientId | string |
None. |
|
| Token | string |
None. |
|
| AgentId | integer |
None. |
|
| PaymentGuid | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"AuthCode": 1,
"EntityCode": 2,
"EntityName": "sample string 3",
"Description": "sample string 4",
"CodeName": "sample string 5",
"ClientId": "sample string 6",
"Token": "sample string 7",
"AgentId": 1,
"PaymentGuid": "sample string 8"
}
application/xml, text/xml
Sample:
<AuthDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Wip"> <AgentId>1</AgentId> <AuthCode>1</AuthCode> <ClientId>sample string 6</ClientId> <CodeName>sample string 5</CodeName> <Description>sample string 4</Description> <EntityCode>2</EntityCode> <EntityName>sample string 3</EntityName> <PaymentGuid>sample string 8</PaymentGuid> <Token>sample string 7</Token> </AuthDto>