to get a personalized navigation.
to get a personalized navigation.
Good morning,
Currently we import ledger transactions to Visma business Nxt using Batches (batch_create) along with vouchers (voucher_create).
But due to this, a customer needs to post these transactions (drafts) manually in accounting system.
I'm wondering if ledger transactions can be posted automatically via API?
Solved! Go to Solution.
Hey,
You can just update the batch after voucher_create.
mutation UpdateBatch($companyNo: Int, $batchNo: Int!) {
useCompany(no: $companyNo) {
batch_processings {
updateBatch(filter: {batchNo: {_eq: $batchNo}}) {
succeeded
}
}
}
}
Copyright © 2022 Visma.com. All rights reserved.