List Autodetected ATAs

Method

GET

Path

atas/autodetected

Request Parameters

None

Response

A JSON object with success, message, and data attributes. The data attribute is an array of Autodetected ATA Objects.

Sample Call

curl -G https://api.phaxio.com/v2.1/atas/autodetected \
  -u 'API_KEY:API_SECRET'

Sample Response

{
  "success": true,
  "message": "Retrieved autodetected ATAs",
  "data": [
    {
      "mac_address": "AABBCCDDEEFF",
      "user_agent": "Grandstream Model HW HT801...",
      "last_seen": "2021-04-21T15:22:03.000-05:00"
    }
  ]
}