IBC. Inc.

IBC Manifest Summary

Introduction

This is JSON REST API service that reports on the current status and a summary of your master airwaybill tendered to IBC.

The service responds to HTTP GET requests to the following URL: https://api.pactrak.com/v1/manifests/YOUR_MAWB_NUMBER

Pass your master airwaybill number to the URL to retrieve the response.

Default response JSON structure for GET Requests.
			
{
        /**
        * The HTTP response code.
        * @type Integer.
        */
        "code": 200,

        /**
        * Response message relevant to the action requested.
        * @type String.
        */
        "message":"",

        /**
        * Response message for the developer relevant to the errors received.
        * @type String.
        */
        "developerMessage":"",

        /**
        * A unique ID for the server responding to the request.
        * @type String.
        */
        "served_by":"",

        /**
        * A link to the resource.
        * @type String.
        */
        "href":"",

        /**
        * The method requested by the caller.
        * @type String.
        */
        "http_method":"",

        /**
        * A boolean flag notice, true for JSONP requests.
        * @type String.
        */
        "jsonpresponse":"",

        /**
        * This object contains the summary details and the history object.
        * @type Array.
        "content": [
                {
                        "manifest_number": "",
                        "service": "",
                        "date": "",
                        /**
                        * An array of event objects
                        * @type Array
                        "history": [
                                {
                                        "time_stamp": ""
                                        "code":""
                                        "message": ""
                                        "entry_count": 0
                                }
                        ]
                }
        [
}