Skip to main content
DELETE
/
v1
/
seller
/
offer
/
end
End Offer
curl --request DELETE \
  --url https://scx-sbx.api.jtl-software.com/v1/seller/offer/end \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "offerList": [
    {
      "channel": "MYBESTDEALCOMDE",
      "sellerId": "4711",
      "offerId": 5437233,
      "channelOfferId": "XCD233554"
    }
  ]
}
'
{
  "errorList": [
    {
      "code": "CHN401",
      "message": "Not all orders could be processed. 9 out of 10 orders were stored successfully",
      "severity": "warning",
      "hint": null
    }
  ]
}

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 offer identifiers that should be ended (de-listed) on the marketplace.

Batch of offers to be ended (delisted) on the marketplace.

offerList
object[]
Required array length: 1 - 5000 elements

Response

Call was overall successful but some items can be faulty

errorList
Error · object[] | null
Example:
[
  {
    "code": "GEN700",
    "message": "Seller SELLER_4711 does not exist on channel kaufland.",
    "severity": "error",
    "hint": "i9n-order22"
  }
]