v1
latestOpenAPI 3.0.02026-07-2421110121.4 KBList Transactions
Returns an array of Transactions sorted in descending order by their creation date. A maximum of 100 Transactions will be returned at a time.
Query parameters
If results are <a href="https://docs.orderful.com/reference/pagination" target="_blank">paginated</a>, this will point to the previous set of results.
If results are <a href="https://docs.orderful.com/reference/pagination" target="_blank">paginated</a>, this will point to the next set of results.
The date and time that the Transactions were created on or before, in ISO-8601 format. This is used to <a href="https://docs.orderful.com/reference/filtering" target="_blank">filter results</a>.
Indicates whether you want results from the Test and/or Live stream.
Indicates which business number(s) you would like to list Transactions from. You may indicate up to 5 business numbers.
Indicates the Transaction Type(s) you would like to filter by. You may indicate up to 5 <a href="https://docs.orderful.com/reference/available-transaction-types" target="_blank">Transaction Types</a>.
The one or more validation status(es) you would like to filter by.
The one or more delivery status(es) you would like to filter by.
The one or more acknowledgment status(es) you would like to filter by.
The Sender ISA ID(s) that you would like to list Transactions from. You may indicate up to 5 Sender ISA IDs.
The Receiver ISA ID(s) that you would like to list Transactions from. You may indicate up to 5 Receiver ISA IDs.
Reference Identifier Value you would like to filter by.
Sender's Interchange Reference Identifier Value you would like to filter by.
Sender's (Functional) Group Reference Identifier Value you would like to filter by.
Sender's Transaction Reference Identifier Value you would like to filter by.
Receiver's Interchange Reference Identifier Value you would like to filter by.
Receiver's (Functional) Group Reference Identifier Value you would like to filter by.
Receiver's Transaction Reference Identifier Value you would like to filter by.
Headers
Your Orderful API key.
Response
List of transactions.
Example response
{
"data": [
{
"id": "000000",
"href": "https://api.orderful.com/v3/transactions/000000",
"version": "v3",
"stream": "TEST",
"businessNumber": "BUSINESS_NUMBER",
"referenceIdentifiers": [
{
"value": "000000001",
"type": "INTERCHANGE",
"owner": "SENDER"
},
{
"value": "1",
"type": "GROUP",
"owner": "SENDER"
},
{
"value": "0001",
"type": "TRANSACTION",
"owner": "SENDER"
}
],
"message": {
"href": "https://api.orderful.com/v3/transactions/000000/message"
},
"validationStatus": "VALID",
"deliveryStatus": "DELIVERED",
"acknowledgmentStatus": "ACCEPTED",
"createdAt": "2025-12-24T14:01:23.613Z",
"lastUpdatedAt": "2025-12-24T14:01:23.613Z",
"acknowledgment": {
"href": "https://api.orderful.com/v3/transactions/000000/acknowledgment"
}
}
]
}