Returns a list of all Orders associated with the authenticated User's Account. Reserved to Users with the Admin, Purchaser or Owner role.
GET
/orders
curl \
--request GET 'https://zim.api.dev.zimconnections.com/orders' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-App-Identifier: $API_KEY"
Response examples (200)
[
{
"id": "ordr_GMAVA4ISiqfWSG0ArGOzB",
"status": "FULFILLED",
"accountID": "acct_ozxEbkTyvLPhhoglcALXE",
"planID": "plan_guaGulGcrqgTYboPvetgu",
"userID": "user_yf95A86RIkVxau2gzBsjV",
"type": "ONE_OFF",
"paymentID": "pay_4FzTYboPvetguABCDEFGH",
"paymentReference": "pi_3OqAbCxYz12345",
"notifyRecipient": true,
"createdAt": "2026-05-12T14:39:23.149Z",
"updatedAt": "2026-05-12T14:41:02.501Z"
},
{
"id": "ordr_QwErTyUiOpAsDfGhJkLZx",
"status": "PROCESSING",
"accountID": "acct_ozxEbkTyvLPhhoglcALXE",
"planID": "plan_guaGulGcrqgTYboPveAAB",
"userID": "user_yf95A86RIkVxau2gzBsjV",
"type": "TOP_UP",
"notifyRecipient": false,
"createdAt": "2026-05-20T09:12:00.000Z",
"updatedAt": "2026-05-20T09:12:30.000Z"
},
{
"id": "ordr_FaiL1234567890abcdEFG",
"status": "FAILED",
"accountID": "acct_ozxEbkTyvLPhhoglcALXE",
"planID": "plan_guaGulGcrqgTYboPvetgu",
"userID": "user_yf95A86RIkVxau2gzBsjV",
"type": "ONE_OFF",
"failureReason": "PLAN_NOT_FOUND",
"createdAt": "2026-05-22T11:00:00.000Z",
"updatedAt": "2026-05-22T11:00:05.000Z"
}
]