This documentation is for the v5 (stable) version of the API.
Invocation URL: /v5/psc/listrfs

Descripton:

List all the Regional Franchises for the specified country.

Parameters:

CountryCode - The CountryCode of the country you want RFs for. See here
FranchiseeCode - (Optional) Return details of a specific Franchisee

Returns:

A data structure like so:

{
	'result': [

    {
        'FranchiseCode': 'ADL',
        'FranchiseName': 'Adelaide',
        'phone': 'Phone: 08 8345 2300',
        'fax': 'Fax: 08 8345 2388',
        'Add1': '2 Woodlands Crescent',
        'Add2': 'Beverley, SA 5009',
        'Add3': '',
        'Add4': ''
    },
    {
        'FranchiseCode': 'ALB',
        'FranchiseName': 'Albury',
        'phone': '02 6025 3122',
        'fax': '02 6025 2911',
        'Add1': '83 Fallon Street',
        'Add2': 'North Albury NSW 2640',
        'Add3': '',
        'Add4': '',
        EmailAddress: 'ALB@fastway.org'
    }]
}

Example:

List all the RFs in CountryCode 1 (Australia):
https://sa.api.fastway.org/v5/psc/listrfs?CountryCode=6&FranchiseeCode=NPE&api_key=YOUR_API_KEY

Back to Price Service Calculator