GET api/GetPreciosCircuito/{Id}?temporada={temporada}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| temporada | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PreciosCls| Name | Description | Type | Additional information |
|---|---|---|---|
| ID_VIAJE | string |
None. |
|
| SENCILLA | decimal number |
None. |
|
| COMPARTIDA | decimal number |
None. |
|
| DOBLE | decimal number |
None. |
|
| TRIPLE | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID_VIAJE": "sample string 1",
"SENCILLA": 2.1,
"COMPARTIDA": 3.1,
"DOBLE": 4.1,
"TRIPLE": 5.1
},
{
"ID_VIAJE": "sample string 1",
"SENCILLA": 2.1,
"COMPARTIDA": 3.1,
"DOBLE": 4.1,
"TRIPLE": 5.1
}
]
application/xml, text/xml
Sample:
<ArrayOfPreciosCls xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Europamundo.Models.Class">
<PreciosCls>
<COMPARTIDA>3.1</COMPARTIDA>
<DOBLE>4.1</DOBLE>
<ID_VIAJE>sample string 1</ID_VIAJE>
<SENCILLA>2.1</SENCILLA>
<TRIPLE>5.1</TRIPLE>
</PreciosCls>
<PreciosCls>
<COMPARTIDA>3.1</COMPARTIDA>
<DOBLE>4.1</DOBLE>
<ID_VIAJE>sample string 1</ID_VIAJE>
<SENCILLA>2.1</SENCILLA>
<TRIPLE>5.1</TRIPLE>
</PreciosCls>
</ArrayOfPreciosCls>