Loading
Cart Total
$0.00
-
Your shopping cart is empty
Loading
Hello! Log in Your Account
New customer? Start here
eFax Management
Storefronts
Customer Management
VoIP Bundle (Subscriptions)
SIP Account Management
Audio Management
Phone Numbers & Call Routing
Phone Calls & CDR Data
VoIP Phone Short Code
eFax Management
Voicemails & Mailboxes
Caller ID
SIP Trunks
Wallboard Statistics
VoIP Phone Provisioning
Call Queueing
Phone Books
VoIP Phone Speed Dial
Text (SMS) Messaging
Commands to manage who is allowed to send faxes via the fax to email system
Become a ResellerFilter:
* You will be charged every time this command is run.
Gets a list of all the currently authorized fax senders on the account
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
200 Response
{
"result" : [
{
"caller_id" : "09c1b1a7-b5d5-457f-a0aa-dc78d0205760",
"created_on" : "2023-06-07",
"email" : "help@yay.com",
"updated_on" : "2023-06-07",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
}
],
"status_code" : 200,
"status_message" : "OK"
}
Gets a specific fax sender on the account
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Fax Sender to be queried
200 Response
{
"result" : {
"caller_id" : "09c1b1a7-b5d5-457f-a0aa-dc78d0205760",
"created_on" : "2023-06-07",
"email" : "help@yay.com",
"updated_on" : "2023-06-07",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 200,
"status_message" : "OK"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
Creates a new authorized fax sender
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
POST body
Name
Type
Required
caller_id
String
True
The UUID of the caller_id used when this sender sends a fax
String
True
The email address authorized to send faxes from this account
JSON all-fields example:
{
"caller_id" : "09c1b1a7-b5d5-457f-a0aa-dc78d0205760",
"email" : "help@yay.com"
}
201 Response
{
"result" : {
"caller_id" : "09c1b1a7-b5d5-457f-a0aa-dc78d0205760",
"created_on" : "2023-06-07",
"email" : "help@yay.com",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 201,
"status_message" : "Created"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
Updates the specified authorized fax sender
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Fax Sender to be updated
PUT body
Name
Type
Required
caller_id
String
True
The UUID of the caller_id used when this sender sends a fax
String
True
The email address authorized to send faxes from this account
JSON all-fields example:
{
"caller_id" : "09c1b1a7-b5d5-457f-a0aa-dc78d0205760",
"email" : "help@yay.com"
}
200 Response
{
"result" : {
"caller_id" : "09c1b1a7-b5d5-457f-a0aa-dc78d0205760",
"created_on" : "2023-06-07",
"email" : "help@yay.com",
"updated_on" : "2023-06-07",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 200,
"status_message" : "OK"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
409 Response
{
"result" : {},
"status_code" : 409,
"status_message" : "Conflict"
}
Deletes the specified fax sender
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Fax Sender to be deleted
204 Response
{
"result" : {},
"status_code" : 204,
"status_message" : "No Content"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}