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

Authorization
string
header
required

The API Token of your ERP Connection.

Body

application/json
Expected parameters to mark transactions as processed.
items
object[]
required

Response

200
application/json
Success
data
object[]
required