This documentation is for the v4 (stable) version of the API.
Invocation URL: /v4/tracktrace/masspod

Descripton:

Perform a batch Proof of Delivery lookup on the specified label numbers. This method literally calls /tt/pod on all the supplied label numbers and puts them in an array.

Parameters:

LabelNoList - A semicolon delimited list of label numbers (eg '5Y0001927918;5Y0001927919;5Y0001927920')
CountryCode - The country in which the label numbers reside (optional)

Returns:

A data structure identical to that of Proof of Delivery, except inside an array with an element for each label number. For example:

{
    'result': [
        {
            'Delivered': false,
            'LabelNo': '5Y0001927918'
        },
        {
            'Delivered': false,
            'LabelNo': '5Y0001927919'
        },
        {
            'Delivered': false,
            'LabelNo': '5Y0001927920'
        }
    ],
    'generated_in': '8ms'
}

Example:

Look up PoDs for the label numbers 5Y0001927918, 5Y0001927919 and 5Y0001927920:
https://sa.api.fastway.org/v4/tracktrace/masspod/5Y0001927918;5Y0001927919;5Y0001927920?api_key=YOUR_API_KEY

Back to Track and Trace