Este endpoint crea un good receipt en ACP 3.
https://devapiacp3.axosnet.io/api/v1/GoodReceipt/Create | Method POST |
JSON |
Notas |
{
"purchaseOrderNumber": "PO123",
"lineNumber": "1",
"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"
}
Ejemplo Body |
Resultados:
StatusCode | Message |
200 | Ok |
400 | Data Error |
400 | The Application is not subscribed |
401 | unauthorized |
500 | Exception Message |
Este endpoint actualiza/elimina un good receipt en ACP 3.
https://devapiacp3.axosnet.io/api/v1/GoodReceipt/Update | Method PUT |
JSON |
Notas |
{
"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"
}
Para eliminar es necesario establecer el campo «IsDeleted» en true. |
Resultados:
Status Code | Message |
200 | Ok |
400 | Data Error |
400 | The Application is not subscribed |
401 | unauthorized |
500 | Exception Message |