Port Houston ============================================================================= :Provider Information: +-----------------+-----------------------------------------------------+ | **Id** | port_houston | +-----------------+-----------------------------------------------------+ | **Type** | terminal | +-----------------+-----------------------------------------------------+ | **Trace Type** | API | +-----------------+-----------------------------------------------------+ | **Credentials** | Uses username and password and it is Customer based | +-----------------+-----------------------------------------------------+ | **Limits** | One Booking per request, 20k API request per day | +-----------------+-----------------------------------------------------+ | **Status** | development | +-----------------+-----------------------------------------------------+ | **Doc Status** | draft | +-----------------+-----------------------------------------------------+ | **Doc Version** | 1 | +-----------------+-----------------------------------------------------+ :URLs: +---------+-----------------------------------------------------------------------+-------------+ | Type | URL | Environment | +=========+=======================================================================+=============+ | Request | https://lynxapi.porthouston.com/lynxservice.asmx/GetBookingInquirySQL | DEV/STG/PRD | +---------+-----------------------------------------------------------------------+-------------+ | Request | https://lynxapi.porthouston.com/lynxservice.asmx/GetVesselSchedule | DEV/STG/PRD | +---------+-----------------------------------------------------------------------+-------------+ :Sites: +------+---------+-----------------+ | Name | Site Id | Description | +======+=========+=================+ | name | ern | the description | +------+---------+-----------------+ Request ----------------------------------------------------------------------------- .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetBookingInquirySQL .. note:: - This request needs in body: username, password, terminal code, and Booking number. Terminal codes goes as follow: +---------------+---------------+ | Terminal Name | Terminal Code | +===============+===============+ | Barbours Cut | PHABC | +---------------+---------------+ | Bayport | PHA | +---------------+---------------+ **headers** should be as following. .. code-block:: Content-Type: application/x-www-form-urlencoded **body** should be as following. Body type needs to be x-www-form-urlencoded .. code-block:: UserName: PWD: TerminalCode: PHABC Booking: 038NY1137543 Query Booking Request Response ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetBookingInquirySQL **body** should be as following. .. code-block:: UserName: PWD: TerminalCode: PHABC Booking: 038NY1137543 .. code-block:: 4388199038NY1137543MSCMediterranean Shipping Co. (USA)IncATHATHENS GLORY344S1USHOUHoustonBRSSZSantos112 20GP86 1 1 0 falseCLOSED1
If credentials of username and password are expired or they are invalid then the following response is returned. .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetBookingInquirySQL **body** should be as following. .. code-block:: UserName: INVALID PWD: INVALID TerminalCode: PHABC Booking: 038NY1137543 Returned status code: 200 Ok .. code-block:: Login Error If **TerminalCode** is invalid, It returns the following response. .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetBookingInquirySQL **body** should be as following. .. code-block:: UserName: PWD: TerminalCode: INVALID Booking: 038NY1137543 Returned status code: 500 Internal Server Error .. code-block:: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index If **UserName**, **PWD**, **TerminalCode**, or **Booking** is missing It returns the following response. .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetBookingInquirySQL **body** should be as following. .. code-block:: UserName: PWD: Booking: 038NY1137543 Returned status code: 500 Internal Server Error .. code-block:: Missing parameter: TerminalCode. If booking is not found It returns the following response. .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetBookingInquirySQL **body** should be as following. .. code-block:: UserName: PWD: TerminalCode: PHA Booking: NOT-FOUND-BOOKING Returned status code: 200 OK .. code-block:: Error: No Booking Found Vessel/Voyage details Request Response ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ To return vessel/voyage details for vessels calling the terminal within a specified date range. This web service will return general details regarding the vessel visit and any associated cutoff information. .. note:: Information returned from this API should match with GetBookingInquirySQL through the key **VESSEL** returned from both requests. .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetVesselSchedule .. note:: - FromDate and ToDate are required in body, and they should be in MM/DD/YYYY format. - FromDate should be in range of 30 days prior to current date. - ToDate should be in range of 30 days after current date. .. code-block:: Content-Type: application/x-www-form-urlencoded **body** should be as following. .. code-block:: UserName: PWD: TerminalCode: PHABC FromDate: (MM/DD/YYYY) ToDate: (MM/DD/YYYY) .. code-block:: MSC BARCELONA MCB 319N 322S 6/11/2023 5:10:00 AM 6/12/2023 6:05:00 PM 6/11/2023 3:00:00 PM 6/11/2023 5:10:00 AM 6/12/2023 1:00:00 PM 6/12/2023 6:05:00 PM 6/2/2023 5:00:00 AM 6/8/2023 4:00:00 PM 6/8/2023 4:00:00 PM 6/8/2023 4:00:00 PM MSC SCS MCB-322S BCT CLOSED If credentials of username and password are expired or they are invalid then the following response is returned. .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetVesselSchedule **body** should be as following. .. code-block:: UserName: INVALID PWD: INVALID TerminalCode: PHABC FromDate: (MM/DD/YYYY) ToDate: (MM/DD/YYYY) Returned status code: 200 Ok .. code-block:: Login Error If **TerminalCode** is invalid, It returns the following response. .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetVesselSchedule **body** should be as following. .. code-block:: UserName: PWD: TerminalCode: INVALID FromDate: (MM/DD/YYYY) ToDate: (MM/DD/YYYY) Returned status code: 500 Internal Server Error .. code-block:: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index If **UserName**, **PWD**, **TerminalCode**, **FromDate**, or **ToDate** is missing It returns the following response. .. code-block:: shell POST https://lynxapi.porthouston.com/lynxservice.asmx/GetVesselSchedule **body** should be as following. .. code-block:: UserName: PWD: FromDate: (MM/DD/YYYY) ToDate: (MM/DD/YYYY) Returned status code: 500 Internal Server Error .. code-block:: Missing parameter: TerminalCode. :Data Mapping: +------------------+------------------+------------------------------------------------+ | Property | Source Property | Description | +==================+==================+================================================+ | id | NBR | The booking number being traced. | +------------------+------------------+------------------------------------------------+ | steamshipLine | ShippingLine | Steamship line identifier/SCAC | +------------------+------------------+------------------------------------------------+ | vessel | VesselName | Identifier of the vessel. | +------------------+------------------+------------------------------------------------+ | voyage | InVoy | Reference number for the voyage. | +------------------+------------------+------------------------------------------------+ || locationCode || PORTOFDISCHARGE || Terminal specific identifier of the location | +------------------+------------------+------------------------------------------------+ | etd | EstDeparture | Estimated time to departure. | +------------------+------------------+------------------------------------------------+ | eta | EstArrival | Estimated time to arrival. | +------------------+------------------+------------------------------------------------+ | arrived | Arrival | time to arrived. | +------------------+------------------+------------------------------------------------+ | cutoff | cargo_cutoff | General cargo cutoff date/time. | +------------------+------------------+------------------------------------------------+ | reeferCutoff | reefer_cutoff | Refrigerated cargo cutoff date/time. | +------------------+------------------+------------------------------------------------+ | hazmatCutoff | hazardous_cutoff | Hazmat cargo cutoff date/time. | +------------------+------------------+------------------------------------------------+ | totalContainers | QUANTITY | Total number of containers | +------------------+------------------+------------------------------------------------+ | loadedContainers | TALLYIN | Total number of loaded containers | +------------------+------------------+------------------------------------------------+ | emptyContainers | TALLYOUT | Total number of empty containers | +------------------+------------------+------------------------------------------------+ | tracedAt | DEFAULTED | Defaulted to time where the booking was traced | +------------------+------------------+------------------------------------------------+