For the complete documentation index, see llms.txt. This page is also available as Markdown.

List Customer Accounts

List all of your customer accounts

GET or POST Request

https://v1.api19.com/account/list/customers

Get a list of all of your sub accounts and types

HTTP Post Variables Supported

Argument

Required

Type

key

yes

api key

user_id

no

int, the user_id of customer

curl https://v1.api19.com/account/list/customers \
 -d 'key=api_token' \
 -d 'user_id=3033333'
curl https://v1.api19.com/account/list/customers?key=apikey&mbox=1111
{
  "status": "ok",
  "data": [
    {
      "user_id": "333222",
      "login": "test",
      "company": "test",
      "name": "test",
      "phone": "",
      "address": "",
      "city": "",
      "state": "",
      "zip": "",
      "country": "",
      "email": "test",
      "status": "active",
      "rates": "302730",
      "subdomain": "myuid.voicelogin.net",
      "billing_terms": "postpaid",
      "billing_creditline": "0",
      "sms_daily_limit": "10000",
      "sms_incoming_url": "none",
      "sms_delivery_by": "post",
      "sms_e164": "no",
      "usf_exempt": "no"
    }
  ]

Last updated