Skip to main content
All CollectionsEmbedded DocumentationEmbedded API Methods
Method for adding extra transactions to a user billing plan
Method for adding extra transactions to a user billing plan
Manuel Bernal avatar
Written by Manuel Bernal
Updated over 10 months ago

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": []
}


Did this answer your question?