Logo
⌘K

Get Order by Id

Retrieve an order specified by its id.
Parameters

orderId

string

Required

Unique identifier of the order.
Returns

The Order matching the supplied orderId.

GET

/orders/get-by-id

curl -G 'https://www.artelo.io/api/open/orders/get-by-id?orderId=d310e238-1cef-49c8-bb63-2e93a06badb4' \
  -H 'Authorization: Bearer your-token'
Response
{
  "createdAt": "2024-09-30T13:56:29.057Z",
  "currency": "USD",
  "channelName": null,
  "companyName": null,
  "customerAddress": {
    "company": "Acme Inc.",
    "city": "Miami",
    "countryCode": "US",
    "id": "address-id",
    "name": "John Doe",
    "phone": "+15551234567",
    "state": "Florida",
    "email": "john@doe.com",
    "street1": "No 1 rosbridge street",
    "street2": "#123",
    "zipcode": "900110"
  },
  "details": {
    "amountRefunded": 0,
    "arteloShipping": 10,
    "branding": 1,
    "wholesaleDiscount": 0,
    "gst": 1,
    "hst": 1,
    "productionCost": 5,
    "pst": 1,
    "usSalesTax": 0
  },
  "id": "de14efbe-daec-4e2d-b967-80ca9a5f9c17",
  "insertPlacement": "PerOrder",
  "insertId": "b1e38b9-442c-41bc-a849-32929a879537",
  "instructions": "Handle it with care",
  "orderId": "this-is-the-order",
  "orderItems": [
    {
      "arteloProductId": "a63d3478-9401-4046-9057-40abdabdc8ef",
      "orderItemId": "item-001",
      "isPersonalizable": false,
      "details": {
        "amountRefunded": 0,
        "arteloShipping": 10,
        "branding": 1,
        "wholesaleDiscount": 0,
        "gst": 1,
        "hst": 1,
        "productionCost": 5,
        "pst": 1,
        "usSalesTax": 0
      },
      "product": {
        "catalogProductId": "IndividualArtPrint",
        "frameColor": "BlackMetal",
        "frameStyle": "Metal",
        "includeFramingService": true,
        "includeHangingPins": true,
        "includeMats": true,
        "orientation": "Horizontal",
        "paperStyle": "FineArt",
        "paperType": "ArchivalMatteFineArt",
        "size": "x10x10"
      },
      "quantity": 10
    }
  ],
  "shipments": [
    {
      "carrierCode": "UPS",
      "trackingNumber": "1234567890",
      "trackingUrl": "http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&Requester=NES&AgreeToTermsAndConditions=yes&loc=en_US&tracknum=1234567890"
    }
  ],
  "status": "Shipped",
  "stickerPlacement": "PerUnit",
  "stickerId": "e7e38b9-442c-41bc-a849-32929a879537"
}