List ATA Groups
Method
Path
/atas/ata_groups
Request Parameters
None
Response
A JSON object with success
, message
, and data
attributes. The data
attribute contains an array of ATA group names for your account, sorted alphabetically.
Sample Call
curl -G https://api.phaxio.com/v2.1/atas/ata_groups \
-u 'API_KEY:API_SECRET'
Sample Response
{
"success": true,
"message": "Retrieved ATA groups",
"data": [
"My Test Group #1",
"My Test Group #2"
]
}