This method is intended to top up your users' billing plans with extra transactions. To add extra transactions, the users must already have an active billing plan.
Authorization: This method should be called with the Master Account token.
Request parameters:
id — An alphanumeric user ID that the partner passes when creating a new user.
count — Number of transactions to be added to the user billing plan. It should be greater than 0 and be a multiple of 100.
Response parameters:
success — Request success indicator. Available values: true or false
Request example via curl:
curl --header "Content-type: application/json" --header "Accept: application/json" --header "Authorization: Basic cEFJjGffUSkV6WFFyWUhBM1RzS2hRHg7iKgReghUiijBfrdTY6" --data '{"id":"test", "count": 2000}' "https://api.albato.com/wl/partner-name/add-user-plan-transactions"
Response example:
{
"success": true,
"data": []
}