Loading
Cart Total
$0.00
-
Your shopping cart is empty
Loading
Hello! Log in Your Account
New customer? Start here
Customer 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
A Document is a file that can be used for verification of required information for certain actions on an account
Become a ResellerFilter:
* You will be charged every time this command is run.
Gets a list of all documents on the account
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
200 Response
{
"result" : [
{
"content_type" : "image/png",
"created_on" : "2023-06-07",
"file_name" : "Pete's Passport.png",
"updated_on" : "2023-06-07",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
}
],
"status_code" : 200,
"status_message" : "OK"
}
Gets a specific document on the account
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
200 Response
{
"result" : {
"content_type" : "image/png",
"created_on" : "2023-06-07",
"file_name" : "Pete's Passport.png",
"updated_on" : "2023-06-07",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 200,
"status_message" : "OK"
}
Creates a new document on the account. The currently accepted content types are: 'application/pdf', 'image/png', 'image/jpeg', 'image/gif', 'image/tiff'.
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
POST body
Name
Type
Required
content
String
True
The Base64 encoded file content
content_type
String
True
The content type of the file to be uploaded
file_name
String
True
The name of the document
JSON all-fields example:
{
"content" : "WW91ciBmaWxlIGNvbnRlbnQgZ29lcyBoZXJlLg==",
"content_type" : "image/png",
"file_name" : "Pete's Passport.png"
}
201 Response
{
"result" : {
"content_type" : "image/png",
"created_on" : "2023-06-07",
"file_name" : "Pete's Passport.png",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 201,
"status_message" : "Created"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}