Queue available-balance recalculation
curl --request POST \
--url https://api.next.orenda.finance/v1/customer/{customerId}/account/{accountId}/available-balance/queue \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/v1/customer/{customerId}/account/{accountId}/available-balance/queue', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/customer/{customerId}/account/{accountId}/available-balance/queue"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"success": true,
"accountId": "a1b2c3d4-5e6f-7081-92a3-b4c5d6e7f809",
"queued": true,
"queuedAt": "2026-06-29T20:11:48.000Z"
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}Accounts
Queue available-balance recalculation
Enqueues a recalculation of the account’s available balance. The back office uses this to force a fresh re-derivation of the available balance (for example after a correction) without waiting for the next scheduled recalculation. The work is processed asynchronously, so the response only confirms that the request was accepted; the balance updates shortly afterwards.
Note: the path is singular (/v1/customer/.../account/...).
POST
/
v1
/
customer
/
{customerId}
/
account
/
{accountId}
/
available-balance
/
queue
Queue available-balance recalculation
curl --request POST \
--url https://api.next.orenda.finance/v1/customer/{customerId}/account/{accountId}/available-balance/queue \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/v1/customer/{customerId}/account/{accountId}/available-balance/queue', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/customer/{customerId}/account/{accountId}/available-balance/queue"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"success": true,
"accountId": "a1b2c3d4-5e6f-7081-92a3-b4c5d6e7f809",
"queued": true,
"queuedAt": "2026-06-29T20:11:48.000Z"
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}Authorizations
The back-office user's access token.
Path Parameters
The customer's ID.
The account's ID.
Query Parameters
The program the customer/account belongs to. Required on every request.
Response
The recalculation request was accepted and queued.
Standard mutation envelope. Additional fields may be present depending on the operation.
Example:
true
⌘I