Orders
Get specific order reports
Fetch all order reports attached to an order
GET
/
orders
/
{uniqueOrderID}
/
reports
Copy
curl --request GET \
--url https://api-ezyconnect.ezytail.com/orders/{uniqueOrderID}/reports \
--header 'Authorization: Bearer <token>'
Copy
[
{
"id": 123,
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"activityCode": "<string>",
"subActivityCode": "<string>",
"orderUniqueID": "<string>",
"prepClosedState": 123,
"firstPackageCreationDate": "2023-11-07T05:31:56Z",
"lastPackageLoadDate": "2023-11-07T05:31:56Z",
"shippedHandlingUnitCount": 123,
"packedPackageCount": 123,
"packedPaletteCount": 123,
"totalPrepWeight": 123,
"totalPrepVolume": 123,
"prepOrderGroupID": "<string>",
"dateProcessed": "2023-11-07T05:31:56Z",
"nomflux": "<string>",
"lignes": [
{
"id": 123,
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"orderLineID": "<string>",
"articleReference": "<string>",
"orderedQuantity": 123,
"preparedQuantity": 123,
"dateProcessed": "2023-11-07T05:31:56Z"
}
],
"parcels": [
{
"id": 123,
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"packageNumber": "<string>",
"palletNumber": "<string>",
"shipmentTrackingNumber": "<string>",
"palletSSCC": "<string>",
"packageSSCC": "<string>",
"trpcont": "<string>",
"transportService": "<string>",
"transportLoadNumber": "<string>",
"packageCreationDate": "2023-11-07T05:31:56Z",
"packageLoadDate": "2023-11-07T05:31:56Z",
"packageRank": 123,
"actualPackageWeight": 123,
"shippedPackageVolume": 123,
"activityPackagingCode": "<string>",
"ezytailWaveID": "<string>",
"seqColis": 123,
"trackingurl": "<string>",
"entries": [
{
"id": 123,
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"parcelId": 123,
"articleReference": "<string>",
"shippedQuantityInPackage": 123,
"properties": [
{}
]
}
]
}
]
}
]
Authorizations
JWT Authorization header using the Bearer scheme. \r\n\r\n Enter 'Bearer' [space] and then your token in the text input below. \r\n\r\nExample: 'Bearer 12345abcdef'
Path Parameters
Response
200
text/plain
OK
The response is of type object[]
.
Copy
curl --request GET \
--url https://api-ezyconnect.ezytail.com/orders/{uniqueOrderID}/reports \
--header 'Authorization: Bearer <token>'
Copy
[
{
"id": 123,
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"activityCode": "<string>",
"subActivityCode": "<string>",
"orderUniqueID": "<string>",
"prepClosedState": 123,
"firstPackageCreationDate": "2023-11-07T05:31:56Z",
"lastPackageLoadDate": "2023-11-07T05:31:56Z",
"shippedHandlingUnitCount": 123,
"packedPackageCount": 123,
"packedPaletteCount": 123,
"totalPrepWeight": 123,
"totalPrepVolume": 123,
"prepOrderGroupID": "<string>",
"dateProcessed": "2023-11-07T05:31:56Z",
"nomflux": "<string>",
"lignes": [
{
"id": 123,
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"orderLineID": "<string>",
"articleReference": "<string>",
"orderedQuantity": 123,
"preparedQuantity": 123,
"dateProcessed": "2023-11-07T05:31:56Z"
}
],
"parcels": [
{
"id": 123,
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"packageNumber": "<string>",
"palletNumber": "<string>",
"shipmentTrackingNumber": "<string>",
"palletSSCC": "<string>",
"packageSSCC": "<string>",
"trpcont": "<string>",
"transportService": "<string>",
"transportLoadNumber": "<string>",
"packageCreationDate": "2023-11-07T05:31:56Z",
"packageLoadDate": "2023-11-07T05:31:56Z",
"packageRank": 123,
"actualPackageWeight": 123,
"shippedPackageVolume": 123,
"activityPackagingCode": "<string>",
"ezytailWaveID": "<string>",
"seqColis": 123,
"trackingurl": "<string>",
"entries": [
{
"id": 123,
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"parcelId": 123,
"articleReference": "<string>",
"shippedQuantityInPackage": 123,
"properties": [
{}
]
}
]
}
]
}
]
Assistant
Responses are generated using AI and may contain mistakes.