GET api/Info?VoyageNo={VoyageNo}

Sailing Schedule details by Voyage. Security Token needed.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
VoyageNo

Grimaldi Voyage Number (ie GHA0321)

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TVoyageSailingSchedule
NameDescriptionTypeAdditional information
VOYAGE

string

None.

PORT_CODE

string

None.

NAME

string

None.

ETA

string

None.

ETS

string

None.

CLOSED

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "VOYAGE": "sample string 1",
    "PORT_CODE": "sample string 2",
    "NAME": "sample string 3",
    "ETA": "sample string 4",
    "ETS": "sample string 5",
    "CLOSED": true
  },
  {
    "VOYAGE": "sample string 1",
    "PORT_CODE": "sample string 2",
    "NAME": "sample string 3",
    "ETA": "sample string 4",
    "ETS": "sample string 5",
    "CLOSED": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfTVoyageSailingSchedule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GNetAPI.Models">
  <TVoyageSailingSchedule>
    <CLOSED>true</CLOSED>
    <ETA>sample string 4</ETA>
    <ETS>sample string 5</ETS>
    <NAME>sample string 3</NAME>
    <PORT_CODE>sample string 2</PORT_CODE>
    <VOYAGE>sample string 1</VOYAGE>
  </TVoyageSailingSchedule>
  <TVoyageSailingSchedule>
    <CLOSED>true</CLOSED>
    <ETA>sample string 4</ETA>
    <ETS>sample string 5</ETS>
    <NAME>sample string 3</NAME>
    <PORT_CODE>sample string 2</PORT_CODE>
    <VOYAGE>sample string 1</VOYAGE>
  </TVoyageSailingSchedule>
</ArrayOfTVoyageSailingSchedule>