Skip to main content
PUT
/
v1
/
seller
/
order
/
payment
Set Payment
curl --request PUT \
  --url https://scx-sbx.api.jtl-software.com/v1/seller/order/payment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "orderList": [
    {
      "sellerId": "4711",
      "orderId": "43523-43432-43532",
      "paymentComplete": true,
      "paidAt": "2019-01-16T13:00:00+01:00",
      "channel": "MYBESTDEALCOMDE"
    }
  ]
}
'
{
  "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

Payment notification for one or more order line items reported by the seller.

Batch of payment notifications reported by the seller for marketplace orders.

orderList
object[]

Response

Created