API & DOCS

My Account            

API used to get a list of tracking numbers in an account

Use the Number List API to get a list of tracking numbers in an account

Use the Number List API to get a list of tracking numbers within a DialogTech account.

📘

Base URL for Number List

https://secure.dialogtech.com/ibp_api.php

Parameter List

ParameterRequiredAcceptsMax LengthNotesUsage
actionYesString: routing.numbersn/aOnly accepts routing.numbers to get a list of tracking numbers in an accountDefines the API Call as "Number List" type
access_keyYesStringn/aAccess Key from the Key Manager within a DialogTech accountCredentials used for access to the API for a particular DialogTech account
secret_access_keyYesStringn/aSecret Access Key from the Key Manager within a DialogTech accountCredentials used for access to the API for a particular DialogTech account
formatNoxml or csvn/axml - Return data in xml format
csv - Return data in csv format
Determines the format used to return the report

Using this API

Example Response

<?xml version='1.0' encoding='iso-8859-1'?>
<!DOCTYPE data [
  <!ELEMENT data (record+)>
  <!ELEMENT record (phone_number,phone_label)>
   <!ELEMENT phone_number (#PCDATA)>
   <!ELEMENT phone_label (#PCDATA)>
]>
<data>
    <record>
        <phone_number>1231231234</phone_number>
        <phone_label>Highway Billboard Number</phone_label>
    </record>
    <record>
        <phone_number>2223334444</phone_number>
        <phone_label>Main St. Bus Bench</phone_label>
    </record>
    <record>
        <phone_number>3334445555</phone_number>
        <phone_label>Business Card</phone_label>
    </record>
</data>
"phone_number","phone_label"
"1231231234","Highway Billboard Number"
"2223334444","Main St. Bus Bench"
"3334445555","Business Card"