Faxbox
The Faxbox API allows you to create and manage fax boxes, which are dedicated containers for sending and receiving faxes.
Base URL​
https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/faxboxes
Overview​
Faxboxes provide dedicated fax handling with customizable settings for notifications, storage, and routing. Each faxbox can be associated with specific phone numbers and users.
Endpoints​
| Method | Endpoint | Description |
|---|---|---|
| GET | /faxboxes | List all faxboxes |
| GET | /faxboxes/{FAXBOX_ID} | Get faxbox details |
| PUT | /faxboxes | Create new faxbox |
| POST | /faxboxes/{FAXBOX_ID} | Update faxbox |
| DELETE | /faxboxes/{FAXBOX_ID} | Delete faxbox |
List Faxboxes​
curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/faxboxes" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"
Response​
{
"auth_token": "{AUTH_TOKEN}",
"data": [],
"request_id": "{REQUEST_ID}",
"status": "success"
}
See Also​
- Fax API - Send and receive individual faxes
Documentation In Progress
This documentation is being expanded. Check back soon for complete API reference.