Skip to main content
GET
/
orders
/
{id}
Retrieve an order
curl --request GET \
  --url https://panel.sendcloud.sc/api/v3/orders/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": {
    "id": "669",
    "order_id": "555413",
    "created_at": "2018-02-27T10:00:00.555Z",
    "modified_at": "2018-02-27T10:00:00.555Z",
    "order_number": "OXSDFGHTD-12",
    "order_details": {
      "integration": {
        "id": 739283
      },
      "status": {
        "code": "fulfilled",
        "message": "Fulfilled"
      },
      "order_created_at": "2018-02-27T10:00:00.555Z",
      "order_updated_at": "2018-02-27T10:00:00.555Z",
      "order_items": [
        {
          "name": "Cylinder candle",
          "measurement": {
            "weight": {
              "value": 1,
              "unit": "kg"
            }
          },
          "quantity": 1,
          "unit_price": {
            "value": 3.5,
            "currency": "EUR"
          },
          "total_price": {
            "value": 3.5,
            "currency": "EUR"
          },
          "delivery_dates": {
            "handover_at": "2022-02-27T10:00:00.555309+00:00",
            "deliver_at": "2022-03-02T11:50:00.555309+00:00"
          },
          "mid_code": "US1234567",
          "material_content": "100% Cotton",
          "intended_use": "Personal use"
        }
      ]
    },
    "payment_details": {
      "is_cash_on_delivery": true,
      "total_price": {
        "value": 7,
        "currency": "EUR"
      },
      "status": {
        "code": "paid",
        "message": "Order has been paid"
      },
      "discount_granted": {
        "value": "3.99",
        "currency": "EUR"
      },
      "insurance_costs": {
        "value": "9.99",
        "currency": "EUR"
      },
      "freight_costs": {
        "value": "5.99",
        "currency": "EUR"
      },
      "other_costs": {
        "value": "2.99",
        "currency": "EUR"
      }
    },
    "customs_details": {
      "commercial_invoice_number": "0124-03102022",
      "shipment_type": "commercial_goods",
      "export_type": "commercial_b2c",
      "tax_numbers": {
        "sender": [
          {
            "name": "VAT",
            "country_code": "NL",
            "value": "NL987654321B02"
          }
        ],
        "receiver": [
          {
            "name": "VAT",
            "country_code": "DE",
            "value": "DE123456789B03"
          }
        ],
        "importer_of_record": [
          {
            "name": "VAT",
            "country_code": "NL",
            "value": "NL975318642B01"
          }
        ]
      }
    },
    "shipping_address": {
      "name": "John Doe",
      "address_line_1": "Stadhuisplein",
      "house_number": "15",
      "postal_code": "5341TW",
      "city": "Oss",
      "country_code": "NL"
    }
  }
}

Authorizations

Authorization
string
header
required

Basic Authentication using API key and secrets is currently the main authentication mechanism.

Path Parameters

id
integer
required

Filtering on the Sendcloud order ID

Required range: x >= 1

Response

OK

data
Order Object · object

Sendcloud Order object