📞
API Docs
  • Welcome
  • NUMBERS / ORDERING
    • List Areas
    • List Numbers
    • Order Numbers - No Cart
    • Delete Numbers
    • Change Call Forward
    • Vanity Tollfree - Search
    • Vanity Toll Free - Order
  • Shopping Cart Ordering
    • Add Number to Cart
    • List Numbers in Cart
    • Delete Number from Cart
    • Complete Order Cart
  • MY INVENTORY
    • List My Nmbers
    • List Call Flows
    • Change CallFlow
    • CDR Records
  • SMS/MMS
    • Send SMS
    • Send MMS
    • Receive SMS/MMS
    • Receive Delivery Receipts
  • Campaigns
    • Submit TollFree Campaign
  • CALL APIS
    • Calls
    • Set Incoming URL
    • Incoming Calls
    • Listing Calls
    • Making Calls
      • Example Code
        • Outbound to Tel#
        • Outbound to SIP Device
        • Example Responses
    • Modifying Live Calls
      • Examples
    • Recordings
      • Get List of Recordings
      • Delete a Recording
  • CALL API MARKUP
    • API Call Markup Language
      • Say
      • Dial
        • Number
        • Client
        • SIP
      • Play
      • Gather
      • Record
      • Hangup
      • Pause
      • Reject
      • Redirect
  • LOOKUPS
    • Carrier and CNAM
  • Number Portability
    • Validate Portability
    • Lookup Port Request
    • Submit Port Request
  • FAXING
    • Create Outbound Fax
    • Lookup Outbound Fax Status
    • List Faxes
    • Download File
  • registered agent
    • List Companies
    • List Registered Agents
    • List Documents
    • Download Document
    • Create Company
    • Delete Company
    • Create Registered Agent
    • Modify Registered Agent
Powered by GitBook
On this page
  1. MY INVENTORY

List My Nmbers

List all of the numbers on your account

GET or POST Request

https://v1.api19.com/dids/my/list

Get a list of all of your numbers on your account

curl https://v1.api19.com/dids/my/list \
 -d 'key=api_token'
curl https://v1.api19.com/dids/my/list?key=apikey
{
    "status": "ok",
    "dids": [
        {
            "did": "7207742222",
            "call_flow": "0",
            "fax_flow": "1",
            "user_id": "177",
            "price_tag": "inbound_usa_fax",
            "number_location": "usa",
            "offnet_carrier": "none",
            "ratecenter": "DENVER",
            "state": "CO",
            "country": "US",
            "e911": "0",
            "voicemail": "0",
            "notes": "none",
            "call_forward": "0"
        },
        {
            "did": "7207921111",
            "call_flow": "3",
            "fax_flow": "0",
            "user_id": "177",
            "price_tag": "inbound_usa",
            "number_location": "usa",
            "offnet_carrier": "none",
            "ratecenter": "DENVER",
            "state": "CO",
            "country": "US",
            "e911": "0",
            "voicemail": "2",
            "notes": "none",
            "call_forward": "0"
        }
    ]
}
PreviousComplete Order CartNextList Call Flows

Last updated 4 days ago