This endpoint creates a delivery note in ACP 3.
https://devapiacp3.axosnet.io/api/v1/DeliveryNotes/Create | Method POST |
JSON |
Notes |
Get token With ClientId and Client Secret |
{
"number": "DN1252",
"listItem": [
{
"purchaseOrderNumber": "PO123"
},
{
"purchaseOrderNumber": "PO124"
},
{
"purchaseOrderNumber": "PO125"
}
]
}
Example (Body) |
Results:
StatusCode | Message |
200 | Ok |
400 | Data Error |
400 | The Application is not subscribed |
401 | unauthorized |
500 | Exception Message |
This endpoint updates/deletes a delivery note in ACP 3.
https://devapiacp3.axosnet.io/api/v1/DeliveryNotes/Update | Method PUT |
JSON |
Notes |
Get token With ClientId and Client Secret |
{
"number": "DN1252",
"isDeleted": false,
"listItem": [
{
"purchaseOrderNumber": "PO123",
"isDeleted": true
},
{
"purchaseOrderNumber": "PO124",
"isDeleted": false
},
{
"purchaseOrderNumber": "PO125",
"isDeleted": true
}
]
}
We can indicate through the “IsDeleted” field if the Delivery Note will be deleted in its entirety or with the “IsDeleted” within each item to eliminate those indicated from the list. |
Results:
StatusCode | Message |
200 | Ok |
400 | Data Error |
400 | The Application is not subscribed |
401 | Unauthorized |
500 | Exception Message |