GET api/Manifiestos/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
Manifiesto| Name | Description | Type | Additional information |
|---|---|---|---|
| IdManifiesto | integer |
None. |
|
| IdProcesoLogistico | integer |
Required Range: inclusive between 1 and 10000 |
|
| Observacion | string |
String length: inclusive between 3 and 200 |
|
| EstadoManifiesto | integer |
Required |
|
| IdEntidadLogisticaOrigen | integer |
Required |
|
| IdEntidadLogisticaDestino | integer |
Required |
|
| FechaMovimiento | date |
Required Data type: Date |
|
| FechaCierre | date |
Required Data type: Date |
|
| CantidadGuias | integer |
Required Range: inclusive between 0 and 100 |
|
| CantidadPiezas | integer |
Required Range: inclusive between 0 and 100 |
|
| TotalPesoFisico | decimal number |
Required |
|
| TotalPesoVolumen | decimal number |
Required |
|
| IdVehiculo | integer |
Required Range: inclusive between 1 and 100000 |
|
| IdOperadorLogistico | integer |
Required Range: inclusive between 1 and 100000 |
|
| IdEntidad | integer |
Required Range: inclusive between 0 and 100000 |
|
| LoginCrea | string |
Required String length: inclusive between 3 and 50 |
|
| FechaCreacion | date |
Required Data type: Date |
|
| LoginModificacion | string |
Required String length: inclusive between 3 and 50 |
|
| FechaModificacion | date |
Required Data type: Date |
|
| FechaGeneracion | date |
Required Data type: DateTime |
Request Formats
application/json, text/json
Sample:
{
"IdManifiesto": 1,
"IdProcesoLogistico": 2,
"Observacion": "sample string 3",
"EstadoManifiesto": 4,
"IdEntidadLogisticaOrigen": 5,
"IdEntidadLogisticaDestino": 6,
"FechaMovimiento": "2025-12-30T08:26:14.939507+00:00",
"FechaCierre": "2025-12-30T08:26:14.939507+00:00",
"CantidadGuias": 9,
"CantidadPiezas": 10,
"TotalPesoFisico": 11.1,
"TotalPesoVolumen": 12.1,
"IdVehiculo": 13,
"IdOperadorLogistico": 14,
"IdEntidad": 15,
"LoginCrea": "sample string 16",
"FechaCreacion": "2025-12-30T08:26:14.939507+00:00",
"LoginModificacion": "sample string 18",
"FechaModificacion": "2025-12-30T08:26:14.939507+00:00",
"FechaGeneracion": "2025-12-30T08:26:14.939507+00:00"
}
application/xml, text/xml
Sample:
<Manifiesto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LogistnetsApi.Models"> <CantidadGuias>9</CantidadGuias> <CantidadPiezas>10</CantidadPiezas> <EstadoManifiesto>4</EstadoManifiesto> <FechaCierre>2025-12-30T08:26:14.939507+00:00</FechaCierre> <FechaCreacion>2025-12-30T08:26:14.939507+00:00</FechaCreacion> <FechaGeneracion>2025-12-30T08:26:14.939507+00:00</FechaGeneracion> <FechaModificacion>2025-12-30T08:26:14.939507+00:00</FechaModificacion> <FechaMovimiento>2025-12-30T08:26:14.939507+00:00</FechaMovimiento> <IdEntidad>15</IdEntidad> <IdEntidadLogisticaDestino>6</IdEntidadLogisticaDestino> <IdEntidadLogisticaOrigen>5</IdEntidadLogisticaOrigen> <IdManifiesto>1</IdManifiesto> <IdOperadorLogistico>14</IdOperadorLogistico> <IdProcesoLogistico>2</IdProcesoLogistico> <IdVehiculo>13</IdVehiculo> <LoginCrea>sample string 16</LoginCrea> <LoginModificacion>sample string 18</LoginModificacion> <Observacion>sample string 3</Observacion> <TotalPesoFisico>11.1</TotalPesoFisico> <TotalPesoVolumen>12.1</TotalPesoVolumen> </Manifiesto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.