Retrieving a rebalancing execution by ID
To retrieve a specific rebalancing trigger, send the following request:
GET /portfolios/rebalancings/executions/{execution_id}
Retrieving orders of a rebalancing execution
To retrieve more detailed information about the rebalancing execution, such as the affected accounts and corresponding orders for rebalancing the portfolio, send the following request:
GET /portfolios/rebalancings/executions/{execution_id}/orders
Example response
{
"id": "735381ce-8380-4b07-9e42-97e2b6d3643e",
"created_at": "2021-07-21T14:10:00.00Z",
"updated_at": "2021-07-21T14:10:00.00Z",
"accounts": [],
"allocations": [
"eafa39e3-7837-476f-8af1-49fa604e3f49"
]
}
You can use the portfolio_order_ids
in the response to retrieve more detailed information:
GET /portfolios/orders/{portfolio_order_id}
Was this page helpful?