Skip to main content
GET
/
purchases
/
{purchase_id}
Get Purchase
curl --request GET \
  --url https://api.example.com/purchases/{purchase_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-key: <x-api-key>'
{
  "purchase_id": "<string>",
  "date": "<string>",
  "total": "<string>",
  "tax": "<string>",
  "subtotal": "<string>",
  "item_count": 123,
  "items": [
    {
      "item_id": "<string>",
      "price": "<string>",
      "quantity": "<string>",
      "product": {
        "product_id": "<string>",
        "description": "<string>",
        "name": "<string>",
        "upc": "049000028911",
        "brand": "diet-coke"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

A connection-specific token with access scope

Headers

x-api-key
string
required

The client's API key secret value

Path Parameters

purchase_id
string
required

Response

Successful Response

purchase_id
string
required

The unique identifier for the purchase

date
string
required

The date and time of the purchase

total
string
required

The total amount of the purchase

tax
string
required

The tax amount of the purchase

subtotal
string
required

The subtotal amount of the purchase

item_count
integer
required

The number of items in the purchase

items
ItemResponse · object[]
required

The list of items in the purchase