Order Object

{
  "mode": "TEST",
  "id": "string",
  "status": "IN_PROGRESS",
  "email": "string",
  "invoice_number": "string",
  "items": [
    {
      "id": "string",
      "product_id": "string",
      "variation_id": "string",
      "external_product_id": "string",
      "external_variation_id": "string",
      "name": "string",
      "image": "string",
      "options": [
        {
          "name": "string",
          "value": "string"
        }
      ],
      "quantity": 0,
      "shippable": true,
      "unit_price": 0,
      "unit_weight": 0,
      "unit_dimensions": {
        "height": 0,
        "width": 0,
        "length": 0
      },
      "total": 0,
      "combined_weight": 0,
      "metadata": "string"
    }
  ],
  "billing_address": {
    "first_name": "string",
    "last_name": "string",
    "full_name": "string",
    "address_1": "string",
    "address_2": "string",
    "street_number": "string",
    "street_name": "string",
    "city": "string",
    "sub_locality": "string",
    "region": "string",
    "country": "string",
    "postal_code": "string",
    "phone": "string"
  },
  "shipping_address": {
    "first_name": "string",
    "last_name": "string",
    "full_name": "string",
    "address_1": "string",
    "address_2": "string",
    "street_number": "string",
    "street_name": "string",
    "city": "string",
    "sub_locality": "string",
    "region": "string",
    "country": "string",
    "postal_code": "string",
    "phone": "string"
  },
  "shipping_method": {
    "name": "string",
    "cost": 0
  },
  "shipping_instructions": "string",
  "discounts": [
    {
      "id": "string",
      "savings": 0,
      "name": "string",
      "type": "string"
    }
  ],
  "taxes": [
    {
      "name": "string",
      "amount": 0,
      "rate": 0
    }
  ],
  "subtotal": 0,
  "total": 0,
  "payment": {
    "transaction_id": "string",
    "status": "PAID",
    "currency": "string",
    "method": "string",
    "card_brand": "NULL",
    "card_last_4": "string"
  },
  "refunds": [
    {
      "id": "string",
      "amount": 0,
      "reason": "string",
      "created": "2023-02-17T19:01:36.318Z"
    }
  ],
  "tracking_url": "string",
  "tracking_number": "string",
  "created": "2023-02-17T19:01:36.318Z",
  "user_agent": "string",
  "ip_address": "string",
  "metadata": "string"
}

order_details

PropertyDescription
mode
string
Can be "TEST" or "LIVE".
id
string
Unique identifier of the order.
status
string
Can be "IN_PROGRESS", "PROCESSED", "DISPUTED", "SHIPPED", "DELIVERED", "PENDING", "CANCELLED", or "DISPATCHED".
email
string
Email associated with the order.
invoice_number
string
Invoice number of the order.
items
object[]
The items in the order.
billing_address
object
The billing address details of the order owner.
shipping_address
object
The shipping address details of the order owner.
shipping_method
object
The shipping method of the order.
discounts
object[]
The discounts applied to the order.
taxes
object[]
The taxes applied to the order.
subtotal
number
Cost of the order before any additions (i.e.: Taxes, Shipping, etc.)
total
number
The total cost of the order.
payment
object
The payment information of the order.
refunds
object[]
The refunds applied to the order.
tracking_url
string
Public URL from the shipping provider to get updates on the shipped order.
tracking_number
string
Public tracking number associated to the order.
created
string
Date that indicates when the order was completed.
user_agent
string
User agent of the customer who made the order.
ip_address
string
IP address of the customer who made the order.
metadata
string
Metadata associated with the order.

items

PropertyDescription
id
string
System identifier of the line item.
product_id
string
The unique identifier for the product backing this order item.
variation_id
string
The unique identifier for the product variation backing this order item.
external_product_id
string
The external id of the product backing this order item.
external_variation_id
string
The external id of the product variation backing this order item.
name
string
Display name of the line item.
image
string
Display image of the line item.
options
object[]
Options selected by the customer associated with the line item.
shippable
bool
Indicates if this item requires shipping.
quantity
number
Quantity bought for this item.
unit_price
number
Price of a single unit of this line item.
unit_weight
number
Weight of a single unit of this line item.
unit_dimensions
object
Dimensions of this line item.
total
number
Total price of this line item (quantity * unit price).
combined_weight
number
Total weight of this line item (quantity * unit weight).

options

PropertyDescriptionMutable
name
string
Name of the option.Yes
value
string
Value of the option.Yes

unit_dimensions

PropertyDescription
height
number
Height of a single unit of this line item.
width
number
Width of a single unit of this line item.
length
number
Length of a single unit of this line item.

address

FieldDescription
first_name
string
First Name attached to the address.
last_name
string
Last Name attached to the address.
full_name
string
Full Name attached to the address.
address_1
string
The first line of the address.
address_2
string
The second line of the address.
street_number
*string
The street number note: this may be part of the address_1 or address_2 values, but is available here as a separate value.
street_name
string
The street name note: this may be part of the address_1 or address_2 values, but is available here as a separate value.
city
string
Name of city attached to the address.
sub_locality
string
Sub-locality attached to the address (ex: county or district name).
region
string
Region attached to the address (ex. the state or province name).
country
string
Country attached to the address.
postal_code
string
Postal code attached to the address.
phone
string
Phone number of contact located at this address.

shipping_method

PropertyDescription
name
string
Name of the shipping method selected on the order.
cost
number
The cost incurred for the order by the shipping method.

discounts

PropertyDescription
id
string
System identifier of the discount resource that was added to this order.
savings
number
The amount of money that was saved on the total of the order using the discount.
name
string
The name of the discount.
type
string
The type of discount that was applied to the order.

taxes

PropertyDescription
name
string
Name of the tax.
amount
number
Amount of the tax when applied to the given order.
rate
number
Percentage rate of the amount that was added for this tax.

payment

PropertyDescription
transaction_id
string
Unique identifier given by the payment provider used to identify the payment made for the order.
status
string
Can be "PAID", "DEFERRED", "PAID_DEFERRED", "CHARGED_BACK", "REFUNDED", "PAIDOUT", "PENDING", "FAILED", "EXPIRED", "CANCELLED", "OPEN", or "AUTHORIZED".
currency
string
Currency of the order.
method
string
Payment method used at checkout for this order.
card_brand
string
Can be "NULL", "VISA", "MASTERCARD", "AMEX", "DINERS_CLUB", "DISCOVER", "J_C_B", "CARD_BLEUE", "DANKORT", "CARTA_SI", "POSTEPAY", "MAESTRO", "LASER", "UNIONPAY", or "OTHER".
card_last_4
string
Card last 4 digits used to pay the order.

refunds

PropertyDescription
id
string
System identifier of the refund.
amount
number
Refunded amount.
reason
string
Reason written by the merchant for the refund.
created
string
Date of the refund.