POST api/AutenticarSessionId?strSessionId={strSessionId}
Metodo encargado de la verificacion de la sesion iniciada
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| strSessionId |
Id de la session iniciada |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SessionData| Name | Description | Type | Additional information |
|---|---|---|---|
| Key |
Identificador de la variable |
string |
None. |
| Value |
Valor de la variable |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Key": "sample string 1",
"Value": "sample string 2"
},
{
"Key": "sample string 1",
"Value": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfSessionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SkCo.FacturacionElectronica.Api.Models">
<SessionData>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</SessionData>
<SessionData>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</SessionData>
</ArrayOfSessionData>