JSON API » transactions » transactions/update

Updates an existing transaction.

Input parameters

Requires authentication and the commerce role privilege.

NameTypeDescriptionRequiredDefault value
auth_usernameStringAuthentication username.Yes
auth_passwordStringAuthentication password.Yes
idIntegerID of transaction to update.Yes
amountDecimalAmount of transaction.NoCurrent value.
currencyStringCurrency amount is in.NoCurrent value.
descriptionStringDescription.NoCurrent value.
taxesStringComma separated list of taxes to apply.NoCurrent value.
timeIntegerUnix timestamp transaction occurred at.NoCurrent value.
update_balanceInteger1 to update balance of customer, 0 not to.No1
update_invoicesInteger1 to update any affected invoices, 0 not to.No1
validationInteger1 to validate input then return, 0 for full action.No0

Positive amounts increase the customer's balance, negative amounts decrease the customer's balance.

Responses

CodeDescription
201Input passed validation. Only returned if validation=1.
204Success.
400Invalid input parameters specified. Check the key and message fields for more details.
401The authentication details provided are invalid.
402Your role does not allow this.
404The transaction does not exist, or you do not have permission to update it.

Data returned

No data is returned.

Example: Changing the amount

http://enswitch.example.com/api/json/transactions/update/?auth_username=user;auth_password=password;id=123;amount=10.00;currency=USD

{ "responses":[ { "code":"204", "key":"", "message":"OK" } ] }

Change history

VersionChanges
3.13Function added.