Salla Docs
Merchant API
Partner APIs
Storefront
Salla CLI
Salla Docs
    Light Mode

    Shipment Tracking

    GET/shipments/{shipment_id}/tracking
    Last modified: a month ago

    This endpoint allows you to fetch tracking details for a specific shipment by passing the shipment_id as a path parameter.

    `shipping.read`- Shipping Read Only `shipping.read_write`- Shipping Read & Write

    Request

    Path Params
    shipment_id
    integer 
    required

    Shipment ID

    Request samples

    Responses

    Success(200)
    HTTP Code: 200
    Content Type : JSONapplication/json
    Data Schema
    No schema defined
    Example
    {
      "status": 200,
      "success": true,
      "data": {
        "id": 362985662,
        "order_id": 560695738,
        "order_reference_id": 48927,
        "type": "shipment",
        "courier_id": 1927161457,
        "courier_name": "Shipping App",
        "courier_logo": "https://salla-dev-portal.s3.eu-central-1.amazonaws.com/uploads/Zo3PtoY2KNo3MkpWARHXhK91DUrsEtQJJqpz5PbY.png",
        "shipping_number": "846984645",
        "tracking_number": "43534254",
        "pickup_id": null,
        "trackable": true,
        "tracking_link": "https://api.shipengine.com/v1/labels/498498496/track",
        "label": {
          "format": "pdf",
          "url": "https://salla-dev.s3.eu-central-1.amazonaws.com/mKZa/shipping-policy/48102-IPqC9O6ysElWi4ze5148I2ilFABxAKvHggmEG4pB.pdf"
        },
        "status": "delivering",
        "history": [
          {
            "status": "delivering",
            "note": "third note the shipment is on the way",
            "create_at": {
              "date": "2023-04-06 11:57:51.000000",
              "timezone_type": 3,
              "timezone": "Asia/Riyadh"
            }
          },
          {
            "status": "created",
            "note": "second note without sending the status in the request",
            "create_at": {
              "date": "2023-04-06 11:49:51.000000",
              "timezone_type": 3,
              "timezone": "Asia/Riyadh"
            }
          },
          {
            "status": "created",
            "note": "first note without sending the status in the request",
            "create_at": {
              "date": "2023-04-06 11:49:35.000000",
              "timezone_type": 3,
              "timezone": "Asia/Riyadh"
            }
          },
          {
            "status": "created",
            "note": null,
            "create_at": {
              "date": "2023-04-06 11:44:23.000000",
              "timezone_type": 3,
              "timezone": "Asia/Riyadh"
            }
          }
        ]
      }
    }
    Last modified: a month ago