GET api/SecurityAPI?username={username}&password={password}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| username | string |
Required |
|
| password | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TransactionalInformation| Name | Description | Type | Additional information |
|---|---|---|---|
| ReturnStatus | boolean |
None. |
|
| ReturnCode | integer |
None. |
|
| ReturnMessage | Collection of string |
None. |
|
| ValidationErrors | Dictionary of Object [key] and Object [value] |
None. |
|
| TotalPages | integer |
None. |
|
| TotalRows | integer |
None. |
|
| PageSize | integer |
None. |
|
| IsAuthenicated | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ValidationErrors": {
"System.Object": {}
},
"TotalPages": 1,
"TotalRows": 2,
"PageSize": 3,
"IsAuthenicated": true,
"ReturnStatus": true,
"ReturnCode": 2,
"ReturnMessage": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<TransactionalInformation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShifuMovilBackEndWEB.Utils">
<IsAuthenicated>true</IsAuthenicated>
<PageSize>3</PageSize>
<ReturnCode>2</ReturnCode>
<ReturnMessage xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ReturnMessage>
<ReturnStatus>true</ReturnStatus>
<TotalPages>1</TotalPages>
<TotalRows>2</TotalRows>
<ValidationErrors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfanyTypeanyType>
<d2p1:Key />
<d2p1:Value />
</d2p1:KeyValueOfanyTypeanyType>
<d2p1:KeyValueOfanyTypeanyType>
<d2p1:Key />
<d2p1:Value />
</d2p1:KeyValueOfanyTypeanyType>
</ValidationErrors>
</TransactionalInformation>