Skip to main content

Create transaction (prepaid)

POST 

/accounting/transactions/prepaid

JSON-RPC

accounting.transactions.create_no_negative

The method creates a transaction only if the client balance (including the credit limit) will not become negative afterwards. Otherwise LowBalanceError exception is raised. If client has unlimited credit, the transaction is created as usual.

Configuring taxes

Taxes can be set in one of two ways:

  1. Using taxes_state

    • Set taxes_state to included to subtract taxes from the specified amount according to the tax profile of the client.
    • Set taxes_state to excluded to calculate taxes in addition to the specified amount.
  2. Providing an exact list of taxes

    • Pass a list of taxes, where each item is a two-element array:
      • The first element is an integer representing the tax id.
      • The second element is a decimal value representing the tax amount.
tip

If you need to create a transaction regardless of the client balance, use "Create transaction (postpaid)" instead.

Request​

Responses​

Transaction details as stored.