getCountriesList — Retrieving a list of countries

The getCountriesList method retrieves a list of countries and their codes which can be used in a provisionAccount call.

The API endpoint is:

https://api.sitelock.com/v1/partner

Request format

  • SiteLockOnlineRequest: This element is used to delineate the full API request.

    • authentication: The partner’s username, password, and branding

      • username: The partner’s API username

      • password: The partner’s API password

      • partner: (Optional) The brand name to use in messaging

    • getCountriesList: The method name

Example request

<SiteLockOnlineRequest>
    <authentication>
        <user>Username</user>
        <password>Password</password>
    </authentication>
    <getCountriesList />
</SiteLockOnlineRequest>

Response format

  • SiteLockOnlineResponse: This element is used to delineate the full API response.

    • getCountriesList: The method name

      • countries: A list of countries and their codes

        • country: (Repeatable) The country name and two-letter code

          • name: The country name

          • code: The country code

Example response

<SiteLockOnlineResponse>
    <getCountriesList>
        <countries>
            <country>
                <name>Andorra</name>
                <code>AD</code>
            </country>
            ...
            <country>
                <name>Zimbabwe</name>
                <code>ZW</code>
            </country>
        </countries>
        <status>ok</status>
    </getCountriesList>
</SiteLockOnlineResponse>