Update API endpoints.

This commit is contained in:
James Cole
2021-09-18 05:26:31 +02:00
parent 4fcc659263
commit 190b6fb25f
20 changed files with 90 additions and 32 deletions

View File

@@ -110,8 +110,8 @@ export default {
let query =
{
where: {source_account_id: this.accountId},
update: {destination_account_id: this.moveToAccount}
where: {account_id: this.accountId},
update: {account_id: this.moveToAccount}
};
axios.post('./api/v1/data/bulk/transactions', {query: JSON.stringify(query)}).then(response => {