Delete an ATA
Method
Path
atas/ID
Request Parameters
None
Response
A JSON object with success
, message
, and data
attributes. The data attribute contains the ID of the deleted ATA.
Sample Call
curl -X DELETE https://api.phaxio.com/v2.1/atas/1234 \
-u 'API_KEY:API_SECRET'
Sample Response
{
"success": true,
"message": "ATA deleted successfully",
"data": {
"id": 1234
}
}