List orders
curl --request GET \
--url https://{shop_domain}/api/partner/v1/orders \
--header 'Authorization: Bearer <token>'import requests
url = "https://{shop_domain}/api/partner/v1/orders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{shop_domain}/api/partner/v1/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{shop_domain}/api/partner/v1/orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{shop_domain}/api/partner/v1/orders"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{shop_domain}/api/partner/v1/orders")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{shop_domain}/api/partner/v1/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 5001,
"reference": "WEB-10001",
"status": "confirmed",
"payment_status": "paid",
"fulfilment_method": "delivery",
"fulfilment_date": "2026-07-02",
"fulfilment_at": "2026-07-02T13:00:00+01:00",
"fulfilment_window": "between 13:00-15:00",
"assigned_florist": {
"name": "Sam Rivera"
},
"recipient": {
"type": "contact",
"id": 202,
"name": null,
"company_name": null,
"email": null,
"phone": null
},
"customer": {
"type": "customer",
"id": 101,
"name": null,
"first_name": null,
"last_name": null,
"company_name": null,
"email": null,
"phone": null,
"address": null,
"created_at": "2026-06-27T10:15:00+01:00",
"updated_at": "2026-06-27T10:20:00+01:00"
},
"address": {
"address_line_one": "10 Example Street",
"address_line_two": null,
"address_line_three": null,
"town": "Manchester",
"county": null,
"postcode": "M1 1AE",
"country": "GB"
},
"line_items": [
{
"product_id": 2048,
"variant": {
"id": 4096,
"name": "Large",
"sku": "HTB-001"
},
"name": "Seasonal Hand-tied Bouquet",
"quantity": 1,
"unit_price": 49,
"line_total": 49,
"tax_total": 8.17,
"note": null,
"card_message": null
}
],
"discount_total": 0,
"total": 54.99,
"tax_total": 9.17,
"fulfilment_charge": 5.99,
"currency": "GBP",
"notes": null,
"created_at": "2026-06-27T10:15:00+01:00",
"updated_at": "2026-06-27T10:20:00+01:00"
}
],
"links": {
"next": "https://your-shop.example/api/partner/v1/orders?cursor=eyJleGFtcGxlIjp0cnVlfQ",
"prev": null
},
"meta": {
"per_page": 25,
"has_more": true
}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"errors": {}
}{
"error": "<string>",
"message": "<string>",
"retry_after": 123
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Required scope: partner.orders.read. The optional partner.customers.pii scope only controls PII field population; without it customer and recipient contact fields, fulfilment address, notes, and assigned florist name are returned as null.
GET
/
orders
List orders
curl --request GET \
--url https://{shop_domain}/api/partner/v1/orders \
--header 'Authorization: Bearer <token>'import requests
url = "https://{shop_domain}/api/partner/v1/orders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{shop_domain}/api/partner/v1/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{shop_domain}/api/partner/v1/orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{shop_domain}/api/partner/v1/orders"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{shop_domain}/api/partner/v1/orders")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{shop_domain}/api/partner/v1/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 5001,
"reference": "WEB-10001",
"status": "confirmed",
"payment_status": "paid",
"fulfilment_method": "delivery",
"fulfilment_date": "2026-07-02",
"fulfilment_at": "2026-07-02T13:00:00+01:00",
"fulfilment_window": "between 13:00-15:00",
"assigned_florist": {
"name": "Sam Rivera"
},
"recipient": {
"type": "contact",
"id": 202,
"name": null,
"company_name": null,
"email": null,
"phone": null
},
"customer": {
"type": "customer",
"id": 101,
"name": null,
"first_name": null,
"last_name": null,
"company_name": null,
"email": null,
"phone": null,
"address": null,
"created_at": "2026-06-27T10:15:00+01:00",
"updated_at": "2026-06-27T10:20:00+01:00"
},
"address": {
"address_line_one": "10 Example Street",
"address_line_two": null,
"address_line_three": null,
"town": "Manchester",
"county": null,
"postcode": "M1 1AE",
"country": "GB"
},
"line_items": [
{
"product_id": 2048,
"variant": {
"id": 4096,
"name": "Large",
"sku": "HTB-001"
},
"name": "Seasonal Hand-tied Bouquet",
"quantity": 1,
"unit_price": 49,
"line_total": 49,
"tax_total": 8.17,
"note": null,
"card_message": null
}
],
"discount_total": 0,
"total": 54.99,
"tax_total": 9.17,
"fulfilment_charge": 5.99,
"currency": "GBP",
"notes": null,
"created_at": "2026-06-27T10:15:00+01:00",
"updated_at": "2026-06-27T10:20:00+01:00"
}
],
"links": {
"next": "https://your-shop.example/api/partner/v1/orders?cursor=eyJleGFtcGxlIjp0cnVlfQ",
"prev": null
},
"meta": {
"per_page": 25,
"has_more": true
}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"errors": {}
}{
"error": "<string>",
"message": "<string>",
"retry_after": 123
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Available options:
pending, confirmed, in_progress, out_for_delivery, fulfilled, cancelled Available options:
unpaid, partially_paid, paid, refunded, partially_refunded, voided Available options:
delivery, collection, relay Filter by fulfilment month (YYYY-MM) or fulfilment date (YYYY-MM-DD).
Pattern:
^\d{4}-\d{2}(-\d{2})?$Page size. Values above the maximum are clamped.
Required range:
1 <= x <= 100Last modified on July 2, 2026
⌘I