Schedule a meeting

Manifest

Manifest Status

URL

PROD https://api.skypostal.com

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

Endpoint

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

Request Parameters

Parameters

user_info

Object - Required

User Info Definition.

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 and app_key are generic credentials, make sure to request your own for TEST and PROD environments.

Comments

This endpoint returns the status of the manifest_id requested.

The command should be run as in the following example:

{
    "user_info":
    {
        "user_code":1,
        "user_key":"ok",
        "app_key":"ok"
    },
    "manifest_id":12387469
}

The command will return the following format:

[
    {
        "_verify": true,
        "error": {
            "error_description": "",
            "error_location": "",
            "system_error": false
        },
        "manifest_id": 12387469,
        "manifest_status": "processing",
        "master_airwaybill": "MASTER123456789",
        "provider_manifest_info": {
            "pvd_manifest_doc_pdf_url": null,
            "pvd_manifest_doc_url": null,
            "pvd_manifest_id": null,
            "pvd_manifest_status": "processing"
        }
    }
]