GET
/
v1
/
sale-order
/
{id}
curl --request GET \
  --url https://public.api.collectpure.com/v1/sale-order/{id} \
  --header 'x-api-key: <api-key>'
{
  "status": "<string>",
  "subtotal": 123,
  "total": 123,
  "salesTax": 123,
  "currency": "<string>",
  "processingFee": 123,
  "shipping": 123,
  "paymentStatus": "<string>",
  "paymentMethod": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "lineItems": [
    {
      "id": 123,
      "productId": "<string>",
      "productTitle": "<string>",
      "variantTitle": "<string>",
      "price": 123,
      "quantity": 123,
      "status": "<string>",
      "trackingNumber": "<string>",
      "shippingService": "<string>",
      "spotPremium": 123,
      "spotPremiumDollar": 123
    }
  ]
}

Retrieve detailed information about a specific sale order by its ID. This endpoint returns comprehensive data about the order including its status, financial details, and line items.

Response Example

{
  "status": "order_complete",
  "subtotal": 1599.98,
  "total": 1699.98,
  "salesTax": 0,
  "currency": "USD",
  "processingFee": 100,
  "shipping": 0,
  "paymentStatus": "paid",
  "paymentMethod": "credit_card",
  "createdAt": "2024-03-01T12:00:00.000Z",
  "updatedAt": "2024-03-05T15:30:00.000Z",
  "lineItems": [
    {
      "id": 1001,
      "productId": "550e8400-e29b-41d4-a716-446655440000",
      "productTitle": "2006 20th Anniversary American Silver Eagle 3-Coin Set",
      "variantTitle": "Pure Qualified",
      "price": 239.99,
      "quantity": 2,
      "status": "shipped",
      "trackingNumber": "1Z999AA10123456784",
      "shippingService": "UPS Ground",
      "spotPremium": 144.48,
      "spotPremiumDollar": 141.83,
      "sellerId": "a1b2c3d4-e5f6-7890-abcd-1234567890ab",
      "sellerName": "Silver Coin Dealers Inc.",
      "sellerShipped": true,
      "receivedForInspection": true,
      "passedInspection": true
    },
    {
      "id": 1002,
      "productId": "550e8400-e29b-41d4-a716-446655440001",
      "productTitle": "1 oz Gold Bar - PAMP Suisse",
      "variantTitle": "New",
      "price": 1120.0,
      "quantity": 1,
      "status": "shipped",
      "trackingNumber": "1Z999AA10123456784",
      "shippingService": "UPS Ground",
      "spotPremium": 3.5,
      "spotPremiumDollar": 37.8,
      "sellerId": "a1b2c3d4-e5f6-7890-abcd-1234567890ab",
      "sellerName": "Silver Coin Dealers Inc.",
      "sellerShipped": true,
      "receivedForInspection": true,
      "passedInspection": true
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

id
string
required

Sale Order ID

Response

200
application/json

Default Response

The response is of type object.