Skip to main content
GET
/
vendor
/
orders
/
{id}
/
commission-lines
curl 'http://localhost:9000/vendor/orders/order_01HXYZABCDEF/commission-lines' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "commission_lines": [
    {
      "id": "comline_01HXYZABCDEF",
      "item_id": "ordli_01HXYZABCDEF",
      "shipping_method_id": null,
      "commission_rate_id": "comrate_01HXYZABCDEF",
      "code": "default",
      "rate": 10,
      "amount": 250,
      "description": null,
      "created_at": "2026-06-01T10:00:00.000Z",
      "updated_at": "2026-06-01T10:00:00.000Z"
    }
  ],
  "count": 1
}
Returns the marketplace commission lines applied to the order’s items and shipping methods for the authenticated seller.

Path parameters

id
string
required
The order’s ID.

Response

commission_lines
object[]
count
number
Number of commission lines returned.
curl 'http://localhost:9000/vendor/orders/order_01HXYZABCDEF/commission-lines' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "commission_lines": [
    {
      "id": "comline_01HXYZABCDEF",
      "item_id": "ordli_01HXYZABCDEF",
      "shipping_method_id": null,
      "commission_rate_id": "comrate_01HXYZABCDEF",
      "code": "default",
      "rate": 10,
      "amount": 250,
      "description": null,
      "created_at": "2026-06-01T10:00:00.000Z",
      "updated_at": "2026-06-01T10:00:00.000Z"
    }
  ],
  "count": 1
}