Skip to main content
DELETE
/
v1
/
seller
/
event
Acknowledge Events
curl --request DELETE \
  --url https://scx-sbx.api.jtl-software.com/v1/seller/event \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "eventIdList": [
    "5cde84164d811d00144581f8"
  ]
}
'
{
  "errorList": [
    {
      "code": "VAL100",
      "message": "Required field sellerId not found",
      "severity": "error",
      "hint": "Check the field `sellerId` — it must be a non-empty string."
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer JWT issued to a seller after they sign up for a JTL-Scx subscription via the JTL Customer Center. Usage format: Bearer <JWT>.

Body

application/json

List of event IDs the seller has successfully processed and which should be marked as acknowledged.

eventIdList
string[]
Required array length: 1 - 100 elements

Response

No Content