Orders
Get List of Orders
List all orders
get/orders
Query parameters
startDatestring
Earliest date to fetch orders for in ISO-8601
endDatestring
Latest date to fetch orders for in ISO-8601
isoCodestring
Jurisdiction code in ISO 3166 alpha-2
Response
OK
Example response
{
"orderId": 12345,
"cost": {
"type": "credit",
"value": 3
},
"links": {
"self": "/orders/12345"
},
"data": [
{
"orderId": "12345",
"orderDate": "2023-01-01T00:00:00Z",
"cost": {
"type": "credit",
"value": 3
},
"user": "/users/12345",
"productDetails": {
"productName": "Annual Accounts 2021-22",
"productId": "ROWOFF_SVRBX0VDUF8wMQ==_RXh0ZW5kZWQgUHJvZmlsZQ==",
"productCategory": "Financial Information",
"productType": "BO_PROFILE",
"schemaVersion": "2.0"
},
"companyDetails": {
"companyName": "Kyckr Limited",
"companyNumber": "R123456",
"kyckrID": "IE|UjEyMzQ1Ng=="
},
"links": {
"data": "/orders/12345/download?format=json",
"document": "/orders/12345/download?format=pdf"
}
}
]
}