[Back to area psc]

Method: listdeliverysuburbs ( on area: psc )

Authentication Required: no

Description:

Produces a list of delivery suburbs based on the specified Pickup RF and optional search terms.

Parameters

RFCode - The Pickup RF code
term - An optional set of search terms. These terms will get matched on the Town and the Postcode. If omitted, everything will be returned.

Returns

A data structure like so:

{
    'result': [
        {
            'Town': 'ABBA RIVER',
            'Postcode': '6280',
            'State': 'WA'
        },
        {
            'Town': 'ABBEY',
            'Postcode': '6280',
            'State': 'WA'
        }
     ]
}

Examples

Invocation URL: /latest/psc/listdeliverysuburbs

/latest/psc/listdeliverysuburbs/SYD/Abb?api_key=YOUR_API_KEY

[Back to area psc]