POST api/RisOrdenCalcularFechaEntrega/calcular
Request Information
URI Parameters
None.
Body Parameters
RisOrdenCalcularFechaEntregaRequestDto| Name | Description | Type | Additional information |
|---|---|---|---|
| FilialID | integer |
None. |
|
| FechaOrden | date |
None. |
|
| EntregaUrgente | boolean |
None. |
|
| NDiasDefault | integer |
None. |
|
| SHoraDefault | string |
None. |
|
| SHoraDefaultSab | string |
None. |
|
| Prestaciones | Collection of RisOrdenCalcularFechaEntregaItemDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"FilialID": 1,
"FechaOrden": "2026-08-21T12:32:46.9063126-03:00",
"EntregaUrgente": true,
"NDiasDefault": 4,
"SHoraDefault": "sample string 5",
"SHoraDefaultSab": "sample string 6",
"Prestaciones": [
{
"Clase": "sample string 1",
"Prestacion": "sample string 2"
},
{
"Clase": "sample string 1",
"Prestacion": "sample string 2"
}
]
}
Response Information
Resource Description
RisOrdenCalcularFechaEntregaResponseDto| Name | Description | Type | Additional information |
|---|---|---|---|
| FechaEntrega | date |
None. |
|
| HoraEntrega | string |
None. |
|
| RetiraSinInforme | boolean |
None. |
|
| Detalle | Collection of RisOrdenCalcularFechaEntregaDetalleDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"FechaEntrega": "2026-08-21T12:32:46.9063126-03:00",
"HoraEntrega": "sample string 2",
"RetiraSinInforme": true,
"Detalle": [
{
"Clase": "sample string 1",
"Prestacion": "sample string 2",
"FechaEntregaPrestacion": "2026-08-21T12:32:46.9063126-03:00",
"HoraEntregaPrestacion": "sample string 3",
"SinInformar": true
},
{
"Clase": "sample string 1",
"Prestacion": "sample string 2",
"FechaEntregaPrestacion": "2026-08-21T12:32:46.9063126-03:00",
"HoraEntregaPrestacion": "sample string 3",
"SinInformar": true
}
]
}