/fulfillment-orders/:id(uuid)
GET /fulfillment-orders/:id(uuid)
GET /fulfillment-orders/:id(uuid)Fetch a specific fulfillment order.
Body:
id- The Purple Dot ID of the fulfillment orderstatus- The current status of the fulfillment order, which can be one of:UNFULFILLED- the order has been placed and is waiting to be fulfilledFULFILLED- all items have been fulfilledVOIDED- the order was canceled
created_at(ISO8610 timestamp) - When this fulfillment order was created (effectively, when Purple Dot was told the related line items are ready to be fulfilled)purchased_at(ISO8610 timestamp) - thecreated_atof the pre-order this fulfillment order originates fromreference- The Purple Dot fulfillment order reference, defined asconcat(Purple Dot pre-order reference, fulfillment order index)currency- The presentment currency of the ordercustomer- The customer placing the orderemail- The customer's email addressexternal_id- The Shopify ID of this customer, if we know itfirst_namelast_nametags- Shopify tags for the customerdefault_addressfirst_namelast_nameaddress1address2citypostal_codeprovince_code- The ISO3166 code of the second level administrative subdivisioncountry- The English name of the countrycountry_code- The ISO3166 code of the countryphone
tax_included- Whether the tax is included in listed prices or nottotal_tax- The total tax on the pre-ordertotal_discounts- The total discounts applied to the fulfillment ordersubtotal_price- The total of the line items before taxes and shippingtotal_price- The fulfillment order totalline_items- Array of line items in this fulfillment orderid- The Purple Dot ID of the line itemprice- The unit cost of the product variant in this line item, before taxes/discounts etctotal- The total cost of this line item, after tax/discounts etc are consideredtaxable- Whether the product variant in this line item is taxabletax_lines- The taxes applied to the line itemprice- The total amount of tax for the line itemrate- The tax rate as a decimaltitle- The name of the taxinclusive- Whether this tax is already included in the line item price
total_discount- The total amount of discounts applied to the line itemquantity- The quantity of the line itemproduct_id- The Shopify ID of the line item's productvariant_id- The Shopify ID of the line item's product variantsku- The SKU code of the product variant in this line itemname- The name of the product variant in this line item
shipping_addressfirst_namelast_nameaddress1address2citypostal_codeprovince_code- The ISO3166 code of the second level administrative subdivisioncountry- The English name of the countrycountry_code- The ISO3166 code of the countryphone
shipping_lines- An array of shipping ratesid- The Purple Dot ID of the shipping lineprice- The unit cost of this shipping line, before taxes/discounts etctotal- The total cost of this shipping line, after tax/discounts etc are consideredtitle- The user-facing name of the shipping ratecode- The shipping rate carrier codetax_lines- The taxes applied to the shipping rateprice- The total amount of tax for the shipping linerate- The tax rate as a decimaltitle- The name of the taxinclusive- Whether this tax is already included in the shipping line price
note- optional notes from the Shopify order
Examples:
curl --request GET \
--url 'https://www.purpledotprice.com/admin/api/v1/fulfillment_order/a1b2c3d4-e5f6-7890-1234-567890abcdef' \
--header 'X-Purple-Dot-Access-Token: <access_token>'Last updated