Endpoint Goods Receipts

This endpoint creates a good receipt in ACP 3.

https://devapiacp3.axosnet.io/api/v1/GoodReceipt/Create

Method POST

JSON
Notes
				
					{
  "purchaseOrderNumber": "PO123",
  "lineNumber": "1",
  "deleted": false,
  "deliverySlipNumber": "DE1252",
  "number": "NE125",
  "grOrderNumber": "2",
  "goodReceiptId": "23",
  "lineItemExternalID": null,
  "receivedDate": "2023-09-18T18:39:25.719Z",
  "receivedQuantity": 2,
  "unitOfMeasureCode": "string",
  "uri": "http://example.com/PO123",
  "version": "1"
}
				
			

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 good receipt in ACP 3.

https://devapiacp3.axosnet.io/api/v1/GoodReceipt/Update

Method PUT

JSON
Notes
				
					{
  "purchaseOrderNumber": "PO123",
  "lineNumber": "1",
  "isDeleted": false,
  "deliverySlipNumber": "DE1252",
  "number": "NE125",
  "grOrderNumber": "2",
  "goodReceiptId": "23",
  "lineItemExternalID": null,
  "receivedDate": "2023-09-18T18:39:25.719Z",
  "receivedQuantity": 2,
  "unitOfMeasureCode": "string",
  "uri": "http://example.com/PO123",
  "version": "1"
}
				
			

To delete it is necessary to set the “IsDeleted” field to true

Results:

Status Code

Message

200

Ok

400

Data Error

400

The Application is not subscribed

401

unauthorized

500

Exception Message