GET api/Autenticacion?keytoken={keytoken}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| keytoken | string |
Required |
Body Parameters
None.
Response Information
Resource Description
respuestaAutenticacion| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
None. |
|
| message | string |
None. |
|
| data | Collection of detalleRespuestaAutenticacion |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": "sample string 1",
"message": "sample string 2",
"data": [
{
"token": "sample string 1"
},
{
"token": "sample string 1"
}
]
}
text/html
Sample:
{"code":"sample string 1","message":"sample string 2","data":[{"token":"sample string 1"},{"token":"sample string 1"}]}
application/xml, text/xml
Sample:
<Variables.respuestaAutenticacion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPICEOE">
<code>sample string 1</code>
<data>
<Variables.detalleRespuestaAutenticacion>
<token>sample string 1</token>
</Variables.detalleRespuestaAutenticacion>
<Variables.detalleRespuestaAutenticacion>
<token>sample string 1</token>
</Variables.detalleRespuestaAutenticacion>
</data>
<message>sample string 2</message>
</Variables.respuestaAutenticacion>