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

Authorization
string
header
required

The back-office user's access token.

Path Parameters

customerId
string<uuid>
required

The customer's ID.

accountId
string<uuid>
required

The account's ID.

Query Parameters

programId
string
required

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.

success
boolean
Example:

true