GET api/SeguridadSocial/Log?idPlanilla={idPlanilla}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idPlanilla | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PlanillaLogDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| IdPlanilla | integer |
None. |
|
| Evento | string |
None. |
|
| Descripcion | string |
None. |
|
| FechaCreacion | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"IdPlanilla": 2,
"Evento": "sample string 3",
"Descripcion": "sample string 4",
"FechaCreacion": "2026-03-23T06:54:25.3385355-05:00"
},
{
"Id": 1,
"IdPlanilla": 2,
"Evento": "sample string 3",
"Descripcion": "sample string 4",
"FechaCreacion": "2026-03-23T06:54:25.3385355-05:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfPlanillaLogDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ReconocimientoFacial.Models.SeguridadSocial">
<PlanillaLogDTO>
<Descripcion>sample string 4</Descripcion>
<Evento>sample string 3</Evento>
<FechaCreacion>2026-03-23T06:54:25.3385355-05:00</FechaCreacion>
<Id>1</Id>
<IdPlanilla>2</IdPlanilla>
</PlanillaLogDTO>
<PlanillaLogDTO>
<Descripcion>sample string 4</Descripcion>
<Evento>sample string 3</Evento>
<FechaCreacion>2026-03-23T06:54:25.3385355-05:00</FechaCreacion>
<Id>1</Id>
<IdPlanilla>2</IdPlanilla>
</PlanillaLogDTO>
</ArrayOfPlanillaLogDTO>