Endpoint Delivery Note

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:

StatusCodeMessage
200Ok
400Data Error
400The Application is not subscribed
401unauthorized
500Exception Message

 

This endpoint updates/deletes a delivery note in ACP 3.

https://devapiacp3.axosnet.io/api/v1/DeliveryNotes/UpdateMethod 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