Skip to main content
PUT
/
v1
/
seller
/
order
/
accept
Order Confirm
curl --request PUT \
  --url https://scx-sbx.api.jtl-software.com/v1/seller/order/accept \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "orderList": [
    {
      "channel": "MYBESTDEALCOMDE",
      "sellerId": "4711",
      "orderId": "43523-43432-43532",
      "orderAccepted": false,
      "reason": "BUYER_CANCELLED"
    }
  ]
}
'
{
  "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

Seller acceptance of a marketplace order, confirming that it will be fulfilled.

Batch of seller order confirmations — acknowledges that the listed orders will be fulfilled.

orderList
OrderConfirm · object[]
Required array length: 1 - 1000 elements

Response

Created