POST api/RegistroHoras/ObtenerReporteRentabilidad
Request Information
URI Parameters
None.
Body Parameters
ReporteCapacidadRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| FechaInicio | date |
None. |
|
| FechaFin | date |
None. |
|
| IdJefatura | integer |
None. |
|
| Cargo | string |
None. |
|
| EstadoPropuesta | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FechaInicio": "2026-05-06T07:03:54.6729019-05:00",
"FechaFin": "2026-05-06T07:03:54.6729019-05:00",
"IdJefatura": 1,
"Cargo": "sample string 3",
"EstadoPropuesta": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<ReporteCapacidadRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArellanoAPI.Models.RegistroHoras">
<Cargo>sample string 3</Cargo>
<EstadoPropuesta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</EstadoPropuesta>
<FechaFin>2026-05-06T07:03:54.6729019-05:00</FechaFin>
<FechaInicio>2026-05-06T07:03:54.6729019-05:00</FechaInicio>
<IdJefatura>1</IdJefatura>
</ReporteCapacidadRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseAPI| Name | Description | Type | Additional information |
|---|---|---|---|
| Exito | boolean |
None. |
|
| Mensaje | string |
None. |
|
| Excepcion | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Exito": true,
"Mensaje": "sample string 2",
"Excepcion": "sample string 3",
"Data": {}
}
application/xml, text/xml
Sample:
<ResponseAPI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArellanoAPI.Models"> <Data /> <Excepcion>sample string 3</Excepcion> <Exito>true</Exito> <Mensaje>sample string 2</Mensaje> </ResponseAPI>