Procurement
Get all procurement reports
Fetch all procurement reports with optional filters, limited to 100 results
GET
/
procurements
/
reports
Copy
curl --request GET \
--url https://api-ezyconnect.ezytail.com/procurements/reports \
--header 'Authorization: Bearer <token>'
Copy
[
{
"id": 123,
"activityCode": "<string>",
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"receptionUniqueID": "<string>",
"supplierCode": "<string>",
"receptionStatus": "<string>",
"ezytailReceptionUniqueID": "<string>",
"receptionProcessingNumber": "<string>",
"carrierDeliveryBLNumber": "<string>",
"blIssuanceDate": "2023-11-07T05:31:56Z",
"actualReceptionDate": "2023-11-07T05:31:56Z",
"rMotifRec": "<string>",
"rTypeRec": "<string>",
"dateProcessed": "2023-11-07T05:31:56Z",
"entries": [
{
"id": 123,
"activityCode": "<string>",
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"orderLineID": "<string>",
"articleReference": "<string>",
"receivedQuantity": 123,
"theoreticalRemainingQuantity": 123,
"supplierBLQuantity": 123,
"ezytailReceptionUniqueID": "<string>",
"details": [
{
"id": 123,
"activityCode": "<string>",
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"ownerCode": "<string>",
"receivedQuantity": 123,
"receivedLotNumber": "<string>",
"articleReceivedDate": "2023-11-07T05:31:56Z",
"serialNumber": "<string>",
"orderLineID": "<string>",
"ezytailReceptionUniqueID": "<string>"
}
]
}
]
}
]
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'
Response
200
text/plain
OK
The response is of type object[]
.
Copy
curl --request GET \
--url https://api-ezyconnect.ezytail.com/procurements/reports \
--header 'Authorization: Bearer <token>'
Copy
[
{
"id": 123,
"activityCode": "<string>",
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"receptionUniqueID": "<string>",
"supplierCode": "<string>",
"receptionStatus": "<string>",
"ezytailReceptionUniqueID": "<string>",
"receptionProcessingNumber": "<string>",
"carrierDeliveryBLNumber": "<string>",
"blIssuanceDate": "2023-11-07T05:31:56Z",
"actualReceptionDate": "2023-11-07T05:31:56Z",
"rMotifRec": "<string>",
"rTypeRec": "<string>",
"dateProcessed": "2023-11-07T05:31:56Z",
"entries": [
{
"id": 123,
"activityCode": "<string>",
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"orderLineID": "<string>",
"articleReference": "<string>",
"receivedQuantity": 123,
"theoreticalRemainingQuantity": 123,
"supplierBLQuantity": 123,
"ezytailReceptionUniqueID": "<string>",
"details": [
{
"id": 123,
"activityCode": "<string>",
"dateCreation": "2023-11-07T05:31:56Z",
"dateLastUpdate": "2023-11-07T05:31:56Z",
"ownerCode": "<string>",
"receivedQuantity": 123,
"receivedLotNumber": "<string>",
"articleReceivedDate": "2023-11-07T05:31:56Z",
"serialNumber": "<string>",
"orderLineID": "<string>",
"ezytailReceptionUniqueID": "<string>"
}
]
}
]
}
]
Assistant
Responses are generated using AI and may contain mistakes.