GET api/MedioTransporte/{idPais}/{idProducto}/{lenguaje}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idPais

integer

Required

idProducto

integer

Required

lenguaje

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DeliveryTransport
NameDescriptionTypeAdditional information
IdMedioTransporte

integer

None.

Nombre_MedioTransporte

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IdMedioTransporte": 1,
    "Nombre_MedioTransporte": "sample string 2"
  },
  {
    "IdMedioTransporte": 1,
    "Nombre_MedioTransporte": "sample string 2"
  }
]

text/html

Sample:
[{"IdMedioTransporte":1,"Nombre_MedioTransporte":"sample string 2"},{"IdMedioTransporte":1,"Nombre_MedioTransporte":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfDeliveryTransport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JourneysDestination.ApiRest.Models">
  <DeliveryTransport>
    <IdMedioTransporte>1</IdMedioTransporte>
    <Nombre_MedioTransporte>sample string 2</Nombre_MedioTransporte>
  </DeliveryTransport>
  <DeliveryTransport>
    <IdMedioTransporte>1</IdMedioTransporte>
    <Nombre_MedioTransporte>sample string 2</Nombre_MedioTransporte>
  </DeliveryTransport>
</ArrayOfDeliveryTransport>