List All (Simple Response)

/list/simple

Full Url

Arguments

  • token (string, required)
  • number_type (enum [local, tollfree, fax, offnet, international], optional)
  • limit (int, optional)
  • offset (int, optional)
Info: Retrieve a list of the phone numbers that you own in a simplified format. This includes those that are owned by your resellers and customers. This API allows you to retrieve larger datasets than the default List All API.

Example Success

{
"code": 200,
"status": "success",
"data": {
"count": 2,
"dids": [
{
"user_id": 22,
"number": 5555555555
},
{
"user_id": 21,
"number": 5555555555
}
]
}
}

Example Error

{
"code": 400,
"status": "error",
"data": "Missing variable: token"
}