[Back to area tt]

Method: liststatuscodes ( on area: tt )

Authentication Required: no

Description:

List the scan status codes for the specified country. Result includes Status Code, Short Description and Extended Description.

Parameters

CountryCode - The country for which to list the status codes.

Returns

A data structure like so:

{
    'result': [
        {
            'StatusCode': '1',
            'StatusDescription': 'Calling Card Left',
            'ExtendedDescription': 'Calling Card Left - Delivery was attempted, the receiver was not available'
        }, { ...etc
        }
    ]
}

Examples

Invocation URL: /latest/tt/liststatuscodes

Get all the status codes for Australia:
/latest/tt/liststatuscodes/1

[Back to area tt]