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
Manage and view balances for your Sub Resellers
Become a ResellerFilter:
* You will be charged every time this command is run.
Gets the current balance on your account
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
200 Response
{
"result" : {
"balance" : 10.0
},
"status_code" : 200,
"status_message" : "OK"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
Gets the balance for the specified sub reseller
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Sub Reseller whose balance is to be queried
200 Response
{
"result" : {
"balance" : 10.0
},
"status_code" : 200,
"status_message" : "OK"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
Gets the historical balance for a sub reseller
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Sub Reseller whose balance history should be queried
200 Response
{
"result" : [
{}
],
"status_code" : 200,
"status_message" : "OK"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
Allocates credit from the master reseller to the target reseller
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Sub Reseller who is the target of the balance re-allocation
net
String
True
Should this transfer have VAT added by the API, or is it already calculated?
PUT body
Name
Type
Required
balance
String
True
The balance to be transferred in GBP
JSON all-fields example:
{
"balance" : "10.00"
}
200 Response
{
"result" : {
"balance" : 10.0
},
"status_code" : 200,
"status_message" : "OK"
}
402 Response
{
"result" : {},
"status_code" : 402,
"status_message" : "Payment Required"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}