Rithum · Example Payload

Dsco Supplier Create Shipment Example

CommerceDropshipMarketplaceEcommerceSupply ChainRetail

Dsco Supplier Create Shipment Example is an example object payload from Rithum, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.dsco.io/api/v3/supplier/shipment-in",
    "headers": {
      "Authorization": "Bearer <access_token>",
      "Content-Type": "application/json"
    },
    "body": {
      "shipments": [
        {
          "orderId": "ORD-2026-00145",
          "lineItemId": "LI-001",
          "trackingNumber": "1Z999AA10123456784",
          "carrier": "UPS",
          "shippedAt": "2026-05-02T09:15:00Z"
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "batchId": "BATCH-SHIP-20260502-001",
      "status": "accepted",
      "errors": []
    }
  }
}