GET
Get Standing Order
Retrieve the full configuration and execution history of a standing order.
GET/v2/standing-orders/{order_id}
Use this endpoint to fetch the details of a specific standing order, including its frequency, amount, and the date of its next scheduled execution.
Headers
| Header | Required | Description |
|---|---|---|
Authorization | YES | Bearer token containing your secret API key. |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
order_id | string | YES | The unique ID (so_...) of the standing order you want to retrieve. |
Example Request
cURL
curl -X GET "https://sandbox.hexcore.io/v2/standing-orders/so_x9y8z7w6v5" \-H "Authorization: Bearer sk_test_your_secret_key"Example Response
JSON (200 OK)
{"status": true,"message": "Standing order retrieved","data": {"order_id": "so_x9y8z7w6v5","source_account": "1234567890","destination_account": "0987654321","amount": 50000.00,"frequency": "MONTHLY","status": "ACTIVE","start_date": "2026-06-01T00:00:00Z","end_date": "2027-05-01T00:00:00Z","next_execution_date": "2026-06-01T00:00:00Z","execution_count": 0} }