Schedule a meeting

Manifest

Get manifest status

This endpoint returns information and status of a manifest sent to process.

URL

PROD https://api.skypostal.com/

TEST https://api-test.skypostal.com/

Endpoint

POST wcf-services/service-manifest.svc/manifest/manifest-get-status

Request Credentials

Parameters

user_info

Object - Required

User Info Definition.

copa_id

Integer - Required

Client identificator provided by Skypostal.

manifest_id

Integer - Required

Manifest identificator provided by Skypostal.

User Info Definition

Parameters

user_code

Integer - Required

This is the user code provided by Skypostal.

user_key

String - Required

This is the app key provided by Skypostal.

app_key

String - Required

This is the app key provided by Skypostal.

Remember

user_code, user_key, app_key, copa_id and box_id are generic credentials, make sure to request your own for TEST and PROD environments

The command should be run as in the following example:

{
    "user_info": {
        "user_code": 123123,
        "user_key": "ok",
        "app_key": "ok"
    },
    "copa_id":589,
    "manifest_id":86943
}

The command will return the following format:

[
    {
        "_verify": true,
        "additional_info": {
            "internal": [],
            "server": {
                "server_id": null,
                "server_time": 0
            }
        },
        "airline": "00",
        "bags_number": 2,
        "copa_gateway_code": 29,
        "copa_id": 589,
        "country_code": 48,
        "departure_date": "/Date(1581051600000-0500)/",
        "error": {
            "error_description": "",
            "error_location": "",
            "system_error": false
        },
        "flight": "LG",
        "iata_code": "BUF",
        "manifest_id": 86943,
        "master_airwaybill": "729-63015632",
        "order_status_description": "Processed",
        "service_order_code": 73723,
        "service_order_number": "040200347512",
        "status_code": 2,
        "status_observation": "Successful",
        "weight": 62,
        "weight_type": "KL"
    }
]