Get all releasable changes to products since a date
Given a datetime, get all ENC versions that have been issued since that datetime.
get/productInformation
Query parameters
sinceDateTimestring date-time required
The date and time from which changes are requested. Any changes since the date will be returned. The date is in RFC 1123 format. The date and time must be within 28 days and cannot be in future.
Response
A JSON body of product objects
Example response
{
"products": [
{
"productName": "GB102505",
"editionNumber": 1,
"dates": [
{
"issueDate": "2019-10-27T00:00:00Z"
}
],
"cancellation": {
"editionNumber": 0,
"updateNumber": 8
},
"fileSize": 2012,
"bundle": [
{
"bundleType": "DVD",
"location": "M1;B3"
}
]
}
],
"productCounts": {
"requestedProductsNotReturned": [
{
"productName": "GB102505"
}
]
}
}