Incoming Transactions
Bulk Mark Transactions Processed
Getting Started
- Overview
- Quick Start
- API Concepts
Documents
- Receiving
- Sending
Guides
Endpoints
- Incoming Transactions
- Outgoing Transactions
- All Transactions
- Tasks
- Misc
Incoming Transactions
Bulk Mark Transactions Processed
Mark a list of incoming transactions as processed.
POST
/
v2
/
transactions
/
bulk
/
mark-processed
curl --request POST \
--url https://api.procuros.io/v2/transactions/bulk/mark-processed \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '[
{
"procurosTransactionId": "949b2ef2-3f40-465e-a7ee-ea3f9f189860",
"success": true
},
{
"procurosTransactionId": "949b2f25-fd9d-4c58-8899-b4dc277f8cf9",
"success": false,
"errorReason": "Product GTIN '\''0001647296281'\'' not found",
"errorType": "DATA"
}
]'
{
"data": [
{
"procurosTransactionId": "949b2ef2-3f40-465e-a7ee-ea3f9f189860",
"message": "OK."
},
{
"procurosTransactionId": "949b2f25-fd9d-4c58-8899-b4dc277f8cf9",
"message": "OK.",
"errorUrl": "https://portal.procuros.io/transactions/{{procurosTransactionId}}/errors"
}
]
}
Authorizations
The API Token of your ERP Connection.
Body
application/json
Expected parameters to mark transactions as processed.
Unique ID assigned to every transaction on the Procuros Network.
Example:
"949b2f25-fd9d-4c58-8899-b4dc277f8cf9"
Whether or not your system was able to process the given transaction.
Reason your system was not able to process the given transaction.
The type of the error. DATA
indicates that the error is caused by invalid or insufficient data and can be resolved by a user. INTERNAL
indicates a system-level error that cannot be fixed by a user.
Available options:
DATA
, INTERNAL
Was this page helpful?
curl --request POST \
--url https://api.procuros.io/v2/transactions/bulk/mark-processed \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '[
{
"procurosTransactionId": "949b2ef2-3f40-465e-a7ee-ea3f9f189860",
"success": true
},
{
"procurosTransactionId": "949b2f25-fd9d-4c58-8899-b4dc277f8cf9",
"success": false,
"errorReason": "Product GTIN '\''0001647296281'\'' not found",
"errorType": "DATA"
}
]'
{
"data": [
{
"procurosTransactionId": "949b2ef2-3f40-465e-a7ee-ea3f9f189860",
"message": "OK."
},
{
"procurosTransactionId": "949b2f25-fd9d-4c58-8899-b4dc277f8cf9",
"message": "OK.",
"errorUrl": "https://portal.procuros.io/transactions/{{procurosTransactionId}}/errors"
}
]
}