Create transaction (postpaid)
POST/accounting/transactions
JSON-RPC
accounting.transactions.create
Configuring taxes
Taxes can be set in one of two ways:
-
Using
taxes_state
- Set
taxes_state
toincluded
to subtract taxes from the specifiedamount
according to the tax profile of the client. - Set
taxes_state
toexcluded
to calculate taxes in addition to the specifiedamount
.
- Set
-
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.
- The first element is an integer representing the tax
- Pass a list of
tip
This method creates a new transaction regardless of the client balance.
To ensure transactions are created only if the client has sufficient balance, use "Create transaction (prepaid)" instead.
Request​
Responses​
- 200
- 400
- 401
- 404
- 422
- 500
Transaction object as has been stored.
The request contains invalid arguments or is malformed
Access is not authorized
Requested object was not found
A logical error occurred, making the request unprocessable
An unexpected error occurred