@spree/docs 0.1.68 → 0.1.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -561,8 +561,19 @@ paths:
|
|
|
561
561
|
- Authentication
|
|
562
562
|
security:
|
|
563
563
|
- api_key: []
|
|
564
|
-
description:
|
|
565
|
-
token
|
|
564
|
+
description: |
|
|
565
|
+
Authenticates a customer and returns a JWT access token + refresh token.
|
|
566
|
+
|
|
567
|
+
Dispatches by the `provider` field to a strategy registered in
|
|
568
|
+
`Spree.store_authentication_strategies`. When `provider` is omitted it
|
|
569
|
+
defaults to `email`, which uses the built-in email/password strategy.
|
|
570
|
+
|
|
571
|
+
To plug in a third-party identity provider (Auth0, Okta, Firebase, a
|
|
572
|
+
custom JWT issuer, SAML, etc.), register a `Spree::Authentication::Strategies::BaseStrategy`
|
|
573
|
+
subclass under a provider key, then send `{ "provider": "<your_key>", ... }`
|
|
574
|
+
with the fields your strategy requires. The endpoint returns the same
|
|
575
|
+
Spree-issued JWT + refresh token regardless of which strategy authenticated
|
|
576
|
+
the request.
|
|
566
577
|
x-codeSamples:
|
|
567
578
|
- lang: javascript
|
|
568
579
|
label: Spree SDK
|
|
@@ -590,16 +601,16 @@ paths:
|
|
|
590
601
|
content:
|
|
591
602
|
application/json:
|
|
592
603
|
example:
|
|
593
|
-
token: eyJhbGciOiJIUzI1NiJ9.
|
|
594
|
-
refresh_token:
|
|
604
|
+
token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjY0NjcwM2Q0LWY5ZjAtNDlmMi05ZmZkLTA3YTZhY2I5YWZkZiIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc5ODE1NjE1fQ.jlz2KHxYkB1Dd9ucl26zy6E5M7dFB5q9g-Qw0YjsX50
|
|
605
|
+
refresh_token: MQ9QZ1ToR8QocZoDd4ggC8yN
|
|
595
606
|
user:
|
|
596
607
|
id: cus_UkLWZg9DAJ
|
|
597
608
|
email: test@example.com
|
|
598
|
-
first_name:
|
|
599
|
-
last_name:
|
|
609
|
+
first_name: Colette
|
|
610
|
+
last_name: Hegmann
|
|
600
611
|
phone:
|
|
601
612
|
accepts_email_marketing: false
|
|
602
|
-
full_name:
|
|
613
|
+
full_name: Colette Hegmann
|
|
603
614
|
available_store_credit_total: '0'
|
|
604
615
|
display_available_store_credit_total: "$0.00"
|
|
605
616
|
addresses: []
|
|
@@ -621,22 +632,45 @@ paths:
|
|
|
621
632
|
content:
|
|
622
633
|
application/json:
|
|
623
634
|
schema:
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
635
|
+
oneOf:
|
|
636
|
+
- title: EmailPasswordLogin
|
|
637
|
+
description: Built-in email/password authentication (default when
|
|
638
|
+
`provider` is omitted).
|
|
639
|
+
type: object
|
|
640
|
+
properties:
|
|
641
|
+
provider:
|
|
642
|
+
type: string
|
|
643
|
+
enum:
|
|
644
|
+
- email
|
|
645
|
+
default: email
|
|
646
|
+
email:
|
|
647
|
+
type: string
|
|
648
|
+
format: email
|
|
649
|
+
example: customer@example.com
|
|
650
|
+
password:
|
|
651
|
+
type: string
|
|
652
|
+
example: password123
|
|
653
|
+
required:
|
|
654
|
+
- email
|
|
655
|
+
- password
|
|
656
|
+
- title: ProviderLogin
|
|
657
|
+
description: |
|
|
658
|
+
Provider-dispatched login. The `provider` key selects a registered
|
|
659
|
+
strategy class; the remaining fields are forwarded to the strategy's
|
|
660
|
+
`authenticate` method. Required fields depend on the registered strategy
|
|
661
|
+
— consult its documentation.
|
|
662
|
+
type: object
|
|
663
|
+
properties:
|
|
664
|
+
provider:
|
|
665
|
+
type: string
|
|
666
|
+
example: auth0
|
|
667
|
+
description: Registered provider key (anything other than `email`).
|
|
668
|
+
not:
|
|
669
|
+
enum:
|
|
670
|
+
- email
|
|
671
|
+
required:
|
|
672
|
+
- provider
|
|
673
|
+
additionalProperties: true
|
|
640
674
|
"/api/v3/store/auth/refresh":
|
|
641
675
|
post:
|
|
642
676
|
summary: Refresh token
|
|
@@ -672,16 +706,16 @@ paths:
|
|
|
672
706
|
content:
|
|
673
707
|
application/json:
|
|
674
708
|
example:
|
|
675
|
-
token: eyJhbGciOiJIUzI1NiJ9.
|
|
676
|
-
refresh_token:
|
|
709
|
+
token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjNmZjU3NWU0LTVmNmItNDVjOC04MzIzLTIzMDMyMzVjZTkzMiIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc5ODE1NjE2fQ.OuCk-UNe-asA8DvK2yKMkp94BQz9PN_Z7_SnReeIRYE
|
|
710
|
+
refresh_token: qLuZDRo8LqywXFThqPM5V2Ug
|
|
677
711
|
user:
|
|
678
712
|
id: cus_UkLWZg9DAJ
|
|
679
713
|
email: test@example.com
|
|
680
|
-
first_name:
|
|
681
|
-
last_name:
|
|
714
|
+
first_name: Debi
|
|
715
|
+
last_name: Tillman
|
|
682
716
|
phone:
|
|
683
717
|
accepts_email_marketing: false
|
|
684
|
-
full_name:
|
|
718
|
+
full_name: Debi Tillman
|
|
685
719
|
available_store_credit_total: '0'
|
|
686
720
|
display_available_store_credit_total: "$0.00"
|
|
687
721
|
addresses: []
|
|
@@ -717,8 +751,9 @@ paths:
|
|
|
717
751
|
- Authentication
|
|
718
752
|
security:
|
|
719
753
|
- api_key: []
|
|
720
|
-
|
|
721
|
-
|
|
754
|
+
description: Revokes the submitted refresh token. The refresh token itself is
|
|
755
|
+
the credential — no Authorization header is required, so a client with an
|
|
756
|
+
expired access JWT can still log out.
|
|
722
757
|
x-codeSamples:
|
|
723
758
|
- lang: javascript
|
|
724
759
|
label: Spree SDK
|
|
@@ -739,11 +774,6 @@ paths:
|
|
|
739
774
|
required: true
|
|
740
775
|
schema:
|
|
741
776
|
type: string
|
|
742
|
-
- name: Authorization
|
|
743
|
-
in: header
|
|
744
|
-
required: true
|
|
745
|
-
schema:
|
|
746
|
-
type: string
|
|
747
777
|
responses:
|
|
748
778
|
'204':
|
|
749
779
|
description: logout without refresh token (no-op)
|
|
@@ -845,9 +875,9 @@ paths:
|
|
|
845
875
|
data:
|
|
846
876
|
- id: cart_gbHJdmfrXB
|
|
847
877
|
market_id:
|
|
848
|
-
number:
|
|
849
|
-
token:
|
|
850
|
-
email:
|
|
878
|
+
number: R537347983
|
|
879
|
+
token: yasKz5u5Uc9LkM8L2qFcbBRhWQzwP1nNUBe
|
|
880
|
+
email: orval_boyle@abernathybogisich.co.uk
|
|
851
881
|
customer_note:
|
|
852
882
|
currency: USD
|
|
853
883
|
locale: en
|
|
@@ -889,8 +919,8 @@ paths:
|
|
|
889
919
|
variant_id: variant_gbHJdmfrXB
|
|
890
920
|
quantity: 1
|
|
891
921
|
currency: USD
|
|
892
|
-
name: Product
|
|
893
|
-
slug: product-
|
|
922
|
+
name: Product 832050
|
|
923
|
+
slug: product-832050
|
|
894
924
|
options_text: ''
|
|
895
925
|
price: '10.0'
|
|
896
926
|
display_price: "$10.00"
|
|
@@ -915,7 +945,7 @@ paths:
|
|
|
915
945
|
digital_links: []
|
|
916
946
|
fulfillments:
|
|
917
947
|
- id: ful_gbHJdmfrXB
|
|
918
|
-
number:
|
|
948
|
+
number: H02359090617
|
|
919
949
|
tracking: U10000
|
|
920
950
|
tracking_url:
|
|
921
951
|
cost: '100.0'
|
|
@@ -944,7 +974,7 @@ paths:
|
|
|
944
974
|
stock_location:
|
|
945
975
|
id: sloc_UkLWZg9DAJ
|
|
946
976
|
state_abbr: NY
|
|
947
|
-
name:
|
|
977
|
+
name: Blair Moore
|
|
948
978
|
address1: 1600 Pennsylvania Ave NW
|
|
949
979
|
city: Washington
|
|
950
980
|
zipcode: '20500'
|
|
@@ -976,7 +1006,7 @@ paths:
|
|
|
976
1006
|
first_name: John
|
|
977
1007
|
last_name: Doe
|
|
978
1008
|
full_name: John Doe
|
|
979
|
-
address1:
|
|
1009
|
+
address1: 101 Lovely Street
|
|
980
1010
|
address2: Northwest
|
|
981
1011
|
postal_code: '10118'
|
|
982
1012
|
city: New York
|
|
@@ -995,7 +1025,7 @@ paths:
|
|
|
995
1025
|
first_name: John
|
|
996
1026
|
last_name: Doe
|
|
997
1027
|
full_name: John Doe
|
|
998
|
-
address1:
|
|
1028
|
+
address1: 102 Lovely Street
|
|
999
1029
|
address2: Northwest
|
|
1000
1030
|
postal_code: '10118'
|
|
1001
1031
|
city: New York
|
|
@@ -1014,9 +1044,9 @@ paths:
|
|
|
1014
1044
|
market:
|
|
1015
1045
|
- id: cart_UkLWZg9DAJ
|
|
1016
1046
|
market_id:
|
|
1017
|
-
number:
|
|
1018
|
-
token:
|
|
1019
|
-
email:
|
|
1047
|
+
number: R807784030
|
|
1048
|
+
token: nXX7y8d9LZ1UXEmP8CxfE2vvLYZH9s6K9Y3
|
|
1049
|
+
email: orval_boyle@abernathybogisich.co.uk
|
|
1020
1050
|
customer_note:
|
|
1021
1051
|
currency: USD
|
|
1022
1052
|
locale: en
|
|
@@ -1058,8 +1088,8 @@ paths:
|
|
|
1058
1088
|
variant_id: variant_UkLWZg9DAJ
|
|
1059
1089
|
quantity: 1
|
|
1060
1090
|
currency: USD
|
|
1061
|
-
name: Product
|
|
1062
|
-
slug: product-
|
|
1091
|
+
name: Product 821901
|
|
1092
|
+
slug: product-821901
|
|
1063
1093
|
options_text: ''
|
|
1064
1094
|
price: '10.0'
|
|
1065
1095
|
display_price: "$10.00"
|
|
@@ -1084,7 +1114,7 @@ paths:
|
|
|
1084
1114
|
digital_links: []
|
|
1085
1115
|
fulfillments:
|
|
1086
1116
|
- id: ful_UkLWZg9DAJ
|
|
1087
|
-
number:
|
|
1117
|
+
number: H10388427867
|
|
1088
1118
|
tracking: U10000
|
|
1089
1119
|
tracking_url:
|
|
1090
1120
|
cost: '100.0'
|
|
@@ -1113,7 +1143,7 @@ paths:
|
|
|
1113
1143
|
stock_location:
|
|
1114
1144
|
id: sloc_UkLWZg9DAJ
|
|
1115
1145
|
state_abbr: NY
|
|
1116
|
-
name:
|
|
1146
|
+
name: Blair Moore
|
|
1117
1147
|
address1: 1600 Pennsylvania Ave NW
|
|
1118
1148
|
city: Washington
|
|
1119
1149
|
zipcode: '20500'
|
|
@@ -1145,7 +1175,7 @@ paths:
|
|
|
1145
1175
|
first_name: John
|
|
1146
1176
|
last_name: Doe
|
|
1147
1177
|
full_name: John Doe
|
|
1148
|
-
address1:
|
|
1178
|
+
address1: 99 Lovely Street
|
|
1149
1179
|
address2: Northwest
|
|
1150
1180
|
postal_code: '10118'
|
|
1151
1181
|
city: New York
|
|
@@ -1164,7 +1194,7 @@ paths:
|
|
|
1164
1194
|
first_name: John
|
|
1165
1195
|
last_name: Doe
|
|
1166
1196
|
full_name: John Doe
|
|
1167
|
-
address1:
|
|
1197
|
+
address1: 100 Lovely Street
|
|
1168
1198
|
address2: Northwest
|
|
1169
1199
|
postal_code: '10118'
|
|
1170
1200
|
city: New York
|
|
@@ -1256,8 +1286,8 @@ paths:
|
|
|
1256
1286
|
example:
|
|
1257
1287
|
id: cart_UkLWZg9DAJ
|
|
1258
1288
|
market_id:
|
|
1259
|
-
number:
|
|
1260
|
-
token:
|
|
1289
|
+
number: R386894669
|
|
1290
|
+
token: AFTUr4LVpnRaQVPntcz4FE5S8AuFqksEEGH
|
|
1261
1291
|
email:
|
|
1262
1292
|
customer_note:
|
|
1263
1293
|
currency: USD
|
|
@@ -1412,9 +1442,9 @@ paths:
|
|
|
1412
1442
|
example:
|
|
1413
1443
|
id: cart_UkLWZg9DAJ
|
|
1414
1444
|
market_id:
|
|
1415
|
-
number:
|
|
1416
|
-
token:
|
|
1417
|
-
email:
|
|
1445
|
+
number: R929020865
|
|
1446
|
+
token: XrTGYYzWrW8pPm2d5SNuJgjFeHQ8MNN6Ufr
|
|
1447
|
+
email: hattie_daniel@pfannerstillherzog.us
|
|
1418
1448
|
customer_note:
|
|
1419
1449
|
currency: USD
|
|
1420
1450
|
locale: en
|
|
@@ -1441,7 +1471,7 @@ paths:
|
|
|
1441
1471
|
display_delivery_total: "$0.00"
|
|
1442
1472
|
warnings:
|
|
1443
1473
|
- code: line_item_removed
|
|
1444
|
-
message: Product
|
|
1474
|
+
message: Product 874599 was removed because it was sold out
|
|
1445
1475
|
line_item_id: li_UkLWZg9DAJ
|
|
1446
1476
|
variant_id: variant_UkLWZg9DAJ
|
|
1447
1477
|
store_credit_total: '0.0'
|
|
@@ -1466,7 +1496,7 @@ paths:
|
|
|
1466
1496
|
first_name: John
|
|
1467
1497
|
last_name: Doe
|
|
1468
1498
|
full_name: John Doe
|
|
1469
|
-
address1:
|
|
1499
|
+
address1: 109 Lovely Street
|
|
1470
1500
|
address2: Northwest
|
|
1471
1501
|
postal_code: '10118'
|
|
1472
1502
|
city: New York
|
|
@@ -1485,7 +1515,7 @@ paths:
|
|
|
1485
1515
|
first_name: John
|
|
1486
1516
|
last_name: Doe
|
|
1487
1517
|
full_name: John Doe
|
|
1488
|
-
address1:
|
|
1518
|
+
address1: 110 Lovely Street
|
|
1489
1519
|
address2: Northwest
|
|
1490
1520
|
postal_code: '10118'
|
|
1491
1521
|
city: New York
|
|
@@ -1583,9 +1613,9 @@ paths:
|
|
|
1583
1613
|
example:
|
|
1584
1614
|
id: cart_UkLWZg9DAJ
|
|
1585
1615
|
market_id:
|
|
1586
|
-
number:
|
|
1587
|
-
token:
|
|
1588
|
-
email:
|
|
1616
|
+
number: R179766659
|
|
1617
|
+
token: LwvBFt69BRKiAP4yjrdydKDiefspHrgEEWV
|
|
1618
|
+
email: floria_corkery@heaney.com
|
|
1589
1619
|
customer_note: Leave at door
|
|
1590
1620
|
currency: USD
|
|
1591
1621
|
locale: en
|
|
@@ -1629,8 +1659,8 @@ paths:
|
|
|
1629
1659
|
variant_id: variant_UkLWZg9DAJ
|
|
1630
1660
|
quantity: 1
|
|
1631
1661
|
currency: USD
|
|
1632
|
-
name: Product
|
|
1633
|
-
slug: product-
|
|
1662
|
+
name: Product 888308
|
|
1663
|
+
slug: product-888308
|
|
1634
1664
|
options_text: ''
|
|
1635
1665
|
price: '19.99'
|
|
1636
1666
|
display_price: "$19.99"
|
|
@@ -1655,7 +1685,7 @@ paths:
|
|
|
1655
1685
|
digital_links: []
|
|
1656
1686
|
fulfillments:
|
|
1657
1687
|
- id: ful_gbHJdmfrXB
|
|
1658
|
-
number:
|
|
1688
|
+
number: H67729784924
|
|
1659
1689
|
tracking:
|
|
1660
1690
|
tracking_url:
|
|
1661
1691
|
cost: '10.0'
|
|
@@ -1684,7 +1714,7 @@ paths:
|
|
|
1684
1714
|
stock_location:
|
|
1685
1715
|
id: sloc_UkLWZg9DAJ
|
|
1686
1716
|
state_abbr: NY
|
|
1687
|
-
name:
|
|
1717
|
+
name: Corazon Luettgen
|
|
1688
1718
|
address1: 1600 Pennsylvania Ave NW
|
|
1689
1719
|
city: Washington
|
|
1690
1720
|
zipcode: '20500'
|
|
@@ -1716,7 +1746,7 @@ paths:
|
|
|
1716
1746
|
first_name: John
|
|
1717
1747
|
last_name: Doe
|
|
1718
1748
|
full_name: John Doe
|
|
1719
|
-
address1:
|
|
1749
|
+
address1: 113 Lovely Street
|
|
1720
1750
|
address2: Northwest
|
|
1721
1751
|
postal_code: '10118'
|
|
1722
1752
|
city: New York
|
|
@@ -1735,7 +1765,7 @@ paths:
|
|
|
1735
1765
|
first_name: John
|
|
1736
1766
|
last_name: Doe
|
|
1737
1767
|
full_name: John Doe
|
|
1738
|
-
address1:
|
|
1768
|
+
address1: 114 Lovely Street
|
|
1739
1769
|
address2: Northwest
|
|
1740
1770
|
postal_code: '10118'
|
|
1741
1771
|
city: New York
|
|
@@ -1921,9 +1951,9 @@ paths:
|
|
|
1921
1951
|
example:
|
|
1922
1952
|
id: cart_UkLWZg9DAJ
|
|
1923
1953
|
market_id:
|
|
1924
|
-
number:
|
|
1925
|
-
token:
|
|
1926
|
-
email:
|
|
1954
|
+
number: R741424210
|
|
1955
|
+
token: BjQx3Mm7YsM51uEQTvTjE4Jkc9QKpdQ57A4
|
|
1956
|
+
email: robbyn@thielkoepp.biz
|
|
1927
1957
|
customer_note:
|
|
1928
1958
|
currency: USD
|
|
1929
1959
|
locale: en
|
|
@@ -1965,8 +1995,8 @@ paths:
|
|
|
1965
1995
|
variant_id: variant_UkLWZg9DAJ
|
|
1966
1996
|
quantity: 1
|
|
1967
1997
|
currency: USD
|
|
1968
|
-
name: Product
|
|
1969
|
-
slug: product-
|
|
1998
|
+
name: Product 907994
|
|
1999
|
+
slug: product-907994
|
|
1970
2000
|
options_text: ''
|
|
1971
2001
|
price: '10.0'
|
|
1972
2002
|
display_price: "$10.00"
|
|
@@ -1991,7 +2021,7 @@ paths:
|
|
|
1991
2021
|
digital_links: []
|
|
1992
2022
|
fulfillments:
|
|
1993
2023
|
- id: ful_UkLWZg9DAJ
|
|
1994
|
-
number:
|
|
2024
|
+
number: H95245243522
|
|
1995
2025
|
tracking: U10000
|
|
1996
2026
|
tracking_url:
|
|
1997
2027
|
cost: '100.0'
|
|
@@ -2020,7 +2050,7 @@ paths:
|
|
|
2020
2050
|
stock_location:
|
|
2021
2051
|
id: sloc_UkLWZg9DAJ
|
|
2022
2052
|
state_abbr: NY
|
|
2023
|
-
name:
|
|
2053
|
+
name: Agatha Hoppe
|
|
2024
2054
|
address1: 1600 Pennsylvania Ave NW
|
|
2025
2055
|
city: Washington
|
|
2026
2056
|
zipcode: '20500'
|
|
@@ -2052,7 +2082,7 @@ paths:
|
|
|
2052
2082
|
first_name: John
|
|
2053
2083
|
last_name: Doe
|
|
2054
2084
|
full_name: John Doe
|
|
2055
|
-
address1:
|
|
2085
|
+
address1: 119 Lovely Street
|
|
2056
2086
|
address2: Northwest
|
|
2057
2087
|
postal_code: '10118'
|
|
2058
2088
|
city: New York
|
|
@@ -2071,7 +2101,7 @@ paths:
|
|
|
2071
2101
|
first_name: John
|
|
2072
2102
|
last_name: Doe
|
|
2073
2103
|
full_name: John Doe
|
|
2074
|
-
address1:
|
|
2104
|
+
address1: 120 Lovely Street
|
|
2075
2105
|
address2: Northwest
|
|
2076
2106
|
postal_code: '10118'
|
|
2077
2107
|
city: New York
|
|
@@ -2155,8 +2185,8 @@ paths:
|
|
|
2155
2185
|
id: or_UkLWZg9DAJ
|
|
2156
2186
|
market_id:
|
|
2157
2187
|
channel_id: ch_UkLWZg9DAJ
|
|
2158
|
-
number:
|
|
2159
|
-
email:
|
|
2188
|
+
number: R464982887
|
|
2189
|
+
email: laila@okuneva.co.uk
|
|
2160
2190
|
customer_note:
|
|
2161
2191
|
currency: USD
|
|
2162
2192
|
locale: en
|
|
@@ -2183,7 +2213,7 @@ paths:
|
|
|
2183
2213
|
display_delivery_total: "$10.00"
|
|
2184
2214
|
fulfillment_status: backorder
|
|
2185
2215
|
payment_status: paid
|
|
2186
|
-
completed_at: '2026-05-
|
|
2216
|
+
completed_at: '2026-05-26T16:13:41.957Z'
|
|
2187
2217
|
store_credit_total: '0.0'
|
|
2188
2218
|
display_store_credit_total: "$0.00"
|
|
2189
2219
|
covered_by_store_credit: false
|
|
@@ -2193,8 +2223,8 @@ paths:
|
|
|
2193
2223
|
variant_id: variant_UkLWZg9DAJ
|
|
2194
2224
|
quantity: 1
|
|
2195
2225
|
currency: USD
|
|
2196
|
-
name: Product
|
|
2197
|
-
slug: product-
|
|
2226
|
+
name: Product 924411
|
|
2227
|
+
slug: product-924411
|
|
2198
2228
|
options_text: ''
|
|
2199
2229
|
price: '19.99'
|
|
2200
2230
|
display_price: "$19.99"
|
|
@@ -2219,7 +2249,7 @@ paths:
|
|
|
2219
2249
|
digital_links: []
|
|
2220
2250
|
fulfillments:
|
|
2221
2251
|
- id: ful_gbHJdmfrXB
|
|
2222
|
-
number:
|
|
2252
|
+
number: H02978405768
|
|
2223
2253
|
tracking:
|
|
2224
2254
|
tracking_url:
|
|
2225
2255
|
cost: '10.0'
|
|
@@ -2248,7 +2278,7 @@ paths:
|
|
|
2248
2278
|
stock_location:
|
|
2249
2279
|
id: sloc_UkLWZg9DAJ
|
|
2250
2280
|
state_abbr: NY
|
|
2251
|
-
name:
|
|
2281
|
+
name: Zachery Smith
|
|
2252
2282
|
address1: 1600 Pennsylvania Ave NW
|
|
2253
2283
|
city: Washington
|
|
2254
2284
|
zipcode: '20500'
|
|
@@ -2277,8 +2307,8 @@ paths:
|
|
|
2277
2307
|
payments:
|
|
2278
2308
|
- id: py_UkLWZg9DAJ
|
|
2279
2309
|
payment_method_id: pm_UkLWZg9DAJ
|
|
2280
|
-
response_code: BGS-
|
|
2281
|
-
number:
|
|
2310
|
+
response_code: BGS-176dea87fe0d
|
|
2311
|
+
number: PYQMKAGA
|
|
2282
2312
|
amount: '29.99'
|
|
2283
2313
|
display_amount: "$29.99"
|
|
2284
2314
|
status: completed
|
|
@@ -2305,7 +2335,7 @@ paths:
|
|
|
2305
2335
|
first_name: John
|
|
2306
2336
|
last_name: Doe
|
|
2307
2337
|
full_name: John Doe
|
|
2308
|
-
address1:
|
|
2338
|
+
address1: 127 Lovely Street
|
|
2309
2339
|
address2: Northwest
|
|
2310
2340
|
postal_code: '10118'
|
|
2311
2341
|
city: New York
|
|
@@ -2324,7 +2354,7 @@ paths:
|
|
|
2324
2354
|
first_name: John
|
|
2325
2355
|
last_name: Doe
|
|
2326
2356
|
full_name: John Doe
|
|
2327
|
-
address1:
|
|
2357
|
+
address1: 128 Lovely Street
|
|
2328
2358
|
address2: Northwest
|
|
2329
2359
|
postal_code: '10118'
|
|
2330
2360
|
city: New York
|
|
@@ -2412,8 +2442,8 @@ paths:
|
|
|
2412
2442
|
example:
|
|
2413
2443
|
data:
|
|
2414
2444
|
- id: ctg_UkLWZg9DAJ
|
|
2415
|
-
name:
|
|
2416
|
-
permalink: taxonomy-
|
|
2445
|
+
name: taxonomy_3
|
|
2446
|
+
permalink: taxonomy-3
|
|
2417
2447
|
position: 0
|
|
2418
2448
|
depth: 0
|
|
2419
2449
|
meta_title:
|
|
@@ -2429,8 +2459,8 @@ paths:
|
|
|
2429
2459
|
is_child: false
|
|
2430
2460
|
is_leaf: false
|
|
2431
2461
|
- id: ctg_gbHJdmfrXB
|
|
2432
|
-
name:
|
|
2433
|
-
permalink: taxonomy-
|
|
2462
|
+
name: taxon_3
|
|
2463
|
+
permalink: taxonomy-3/taxon-3
|
|
2434
2464
|
position: 0
|
|
2435
2465
|
depth: 1
|
|
2436
2466
|
meta_title:
|
|
@@ -2446,8 +2476,8 @@ paths:
|
|
|
2446
2476
|
is_child: true
|
|
2447
2477
|
is_leaf: false
|
|
2448
2478
|
- id: ctg_EfhxLZ9ck8
|
|
2449
|
-
name:
|
|
2450
|
-
permalink: taxonomy-
|
|
2479
|
+
name: taxon_4
|
|
2480
|
+
permalink: taxonomy-3/taxon-3/taxon-4
|
|
2451
2481
|
position: 0
|
|
2452
2482
|
depth: 2
|
|
2453
2483
|
meta_title:
|
|
@@ -2546,8 +2576,8 @@ paths:
|
|
|
2546
2576
|
application/json:
|
|
2547
2577
|
example:
|
|
2548
2578
|
id: ctg_gbHJdmfrXB
|
|
2549
|
-
name:
|
|
2550
|
-
permalink: taxonomy-
|
|
2579
|
+
name: taxon_12
|
|
2580
|
+
permalink: taxonomy-9/taxon-12
|
|
2551
2581
|
position: 0
|
|
2552
2582
|
depth: 1
|
|
2553
2583
|
meta_title:
|
|
@@ -3134,16 +3164,16 @@ paths:
|
|
|
3134
3164
|
content:
|
|
3135
3165
|
application/json:
|
|
3136
3166
|
example:
|
|
3137
|
-
token: eyJhbGciOiJIUzI1NiJ9.
|
|
3138
|
-
refresh_token:
|
|
3167
|
+
token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjU1YjA5Yzc4LTUzMTYtNDRjYy05ZjJiLThmN2E2MzViMmRlNSIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc5ODE1NjI4fQ.FX2Te4WfdAu3kN_fvvfHsH92_axvIZTI1d8Zmw8R1mE
|
|
3168
|
+
refresh_token: Be2HUCjiJVRjgidFuYU7GRRh
|
|
3139
3169
|
user:
|
|
3140
3170
|
id: cus_UkLWZg9DAJ
|
|
3141
3171
|
email: customer@example.com
|
|
3142
|
-
first_name:
|
|
3143
|
-
last_name:
|
|
3172
|
+
first_name: Randa
|
|
3173
|
+
last_name: O'Hara
|
|
3144
3174
|
phone:
|
|
3145
3175
|
accepts_email_marketing: false
|
|
3146
|
-
full_name:
|
|
3176
|
+
full_name: Randa O'Hara
|
|
3147
3177
|
available_store_credit_total: '0'
|
|
3148
3178
|
display_available_store_credit_total: "$0.00"
|
|
3149
3179
|
addresses: []
|
|
@@ -3316,8 +3346,8 @@ paths:
|
|
|
3316
3346
|
- id: or_UkLWZg9DAJ
|
|
3317
3347
|
market_id:
|
|
3318
3348
|
channel_id: ch_UkLWZg9DAJ
|
|
3319
|
-
number:
|
|
3320
|
-
email:
|
|
3349
|
+
number: R096824993
|
|
3350
|
+
email: gena@ohara.biz
|
|
3321
3351
|
customer_note:
|
|
3322
3352
|
currency: USD
|
|
3323
3353
|
locale: en
|
|
@@ -3344,7 +3374,7 @@ paths:
|
|
|
3344
3374
|
display_delivery_total: "$100.00"
|
|
3345
3375
|
fulfillment_status:
|
|
3346
3376
|
payment_status:
|
|
3347
|
-
completed_at: '2026-05-
|
|
3377
|
+
completed_at: '2026-05-26T16:13:49.079Z'
|
|
3348
3378
|
store_credit_total: '0.0'
|
|
3349
3379
|
display_store_credit_total: "$0.00"
|
|
3350
3380
|
covered_by_store_credit: false
|
|
@@ -3354,8 +3384,8 @@ paths:
|
|
|
3354
3384
|
variant_id: variant_UkLWZg9DAJ
|
|
3355
3385
|
quantity: 1
|
|
3356
3386
|
currency: USD
|
|
3357
|
-
name: Product
|
|
3358
|
-
slug: product-
|
|
3387
|
+
name: Product 1016128
|
|
3388
|
+
slug: product-1016128
|
|
3359
3389
|
options_text: ''
|
|
3360
3390
|
price: '10.0'
|
|
3361
3391
|
display_price: "$10.00"
|
|
@@ -3380,7 +3410,7 @@ paths:
|
|
|
3380
3410
|
digital_links: []
|
|
3381
3411
|
fulfillments:
|
|
3382
3412
|
- id: ful_UkLWZg9DAJ
|
|
3383
|
-
number:
|
|
3413
|
+
number: H70742962050
|
|
3384
3414
|
tracking: U10000
|
|
3385
3415
|
tracking_url:
|
|
3386
3416
|
cost: '100.0'
|
|
@@ -3409,7 +3439,7 @@ paths:
|
|
|
3409
3439
|
stock_location:
|
|
3410
3440
|
id: sloc_UkLWZg9DAJ
|
|
3411
3441
|
state_abbr: NY
|
|
3412
|
-
name:
|
|
3442
|
+
name: Britany Halvorson
|
|
3413
3443
|
address1: 1600 Pennsylvania Ave NW
|
|
3414
3444
|
city: Washington
|
|
3415
3445
|
zipcode: '20500'
|
|
@@ -3441,7 +3471,7 @@ paths:
|
|
|
3441
3471
|
first_name: John
|
|
3442
3472
|
last_name: Doe
|
|
3443
3473
|
full_name: John Doe
|
|
3444
|
-
address1:
|
|
3474
|
+
address1: 147 Lovely Street
|
|
3445
3475
|
address2: Northwest
|
|
3446
3476
|
postal_code: '10118'
|
|
3447
3477
|
city: New York
|
|
@@ -3460,7 +3490,7 @@ paths:
|
|
|
3460
3490
|
first_name: John
|
|
3461
3491
|
last_name: Doe
|
|
3462
3492
|
full_name: John Doe
|
|
3463
|
-
address1:
|
|
3493
|
+
address1: 148 Lovely Street
|
|
3464
3494
|
address2: Northwest
|
|
3465
3495
|
postal_code: '10118'
|
|
3466
3496
|
city: New York
|
|
@@ -3572,8 +3602,8 @@ paths:
|
|
|
3572
3602
|
id: or_UkLWZg9DAJ
|
|
3573
3603
|
market_id:
|
|
3574
3604
|
channel_id: ch_UkLWZg9DAJ
|
|
3575
|
-
number:
|
|
3576
|
-
email:
|
|
3605
|
+
number: R695830260
|
|
3606
|
+
email: jerica.wehner@wintheiser.biz
|
|
3577
3607
|
customer_note:
|
|
3578
3608
|
currency: USD
|
|
3579
3609
|
locale: en
|
|
@@ -3600,7 +3630,7 @@ paths:
|
|
|
3600
3630
|
display_delivery_total: "$100.00"
|
|
3601
3631
|
fulfillment_status:
|
|
3602
3632
|
payment_status:
|
|
3603
|
-
completed_at: '2026-05-
|
|
3633
|
+
completed_at: '2026-05-26T16:13:49.771Z'
|
|
3604
3634
|
store_credit_total: '0.0'
|
|
3605
3635
|
display_store_credit_total: "$0.00"
|
|
3606
3636
|
covered_by_store_credit: false
|
|
@@ -3610,8 +3640,8 @@ paths:
|
|
|
3610
3640
|
variant_id: variant_UkLWZg9DAJ
|
|
3611
3641
|
quantity: 1
|
|
3612
3642
|
currency: USD
|
|
3613
|
-
name: Product
|
|
3614
|
-
slug: product-
|
|
3643
|
+
name: Product 1033099
|
|
3644
|
+
slug: product-1033099
|
|
3615
3645
|
options_text: ''
|
|
3616
3646
|
price: '10.0'
|
|
3617
3647
|
display_price: "$10.00"
|
|
@@ -3636,7 +3666,7 @@ paths:
|
|
|
3636
3666
|
digital_links: []
|
|
3637
3667
|
fulfillments:
|
|
3638
3668
|
- id: ful_UkLWZg9DAJ
|
|
3639
|
-
number:
|
|
3669
|
+
number: H08221240082
|
|
3640
3670
|
tracking: U10000
|
|
3641
3671
|
tracking_url:
|
|
3642
3672
|
cost: '100.0'
|
|
@@ -3665,7 +3695,7 @@ paths:
|
|
|
3665
3695
|
stock_location:
|
|
3666
3696
|
id: sloc_UkLWZg9DAJ
|
|
3667
3697
|
state_abbr: NY
|
|
3668
|
-
name:
|
|
3698
|
+
name: Aleen Reynolds
|
|
3669
3699
|
address1: 1600 Pennsylvania Ave NW
|
|
3670
3700
|
city: Washington
|
|
3671
3701
|
zipcode: '20500'
|
|
@@ -3697,7 +3727,7 @@ paths:
|
|
|
3697
3727
|
first_name: John
|
|
3698
3728
|
last_name: Doe
|
|
3699
3729
|
full_name: John Doe
|
|
3700
|
-
address1:
|
|
3730
|
+
address1: 153 Lovely Street
|
|
3701
3731
|
address2: Northwest
|
|
3702
3732
|
postal_code: '10118'
|
|
3703
3733
|
city: New York
|
|
@@ -3716,7 +3746,7 @@ paths:
|
|
|
3716
3746
|
first_name: John
|
|
3717
3747
|
last_name: Doe
|
|
3718
3748
|
full_name: John Doe
|
|
3719
|
-
address1:
|
|
3749
|
+
address1: 154 Lovely Street
|
|
3720
3750
|
address2: Northwest
|
|
3721
3751
|
postal_code: '10118'
|
|
3722
3752
|
city: New York
|
|
@@ -3785,8 +3815,8 @@ paths:
|
|
|
3785
3815
|
content:
|
|
3786
3816
|
application/json:
|
|
3787
3817
|
example:
|
|
3788
|
-
token: eyJhbGciOiJIUzI1NiJ9.
|
|
3789
|
-
refresh_token:
|
|
3818
|
+
token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjlmZGNlNTdjLTY2NGQtNGZkNy1hOTU2LWQ1MjEzZjdhMjljYSIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc5ODE1NjMwfQ.vLRThKiR034rnZQYwpQGrIOeQSdrYNKnFVJZ86pCuUo
|
|
3819
|
+
refresh_token: GVssZP2L5Zk7uKQzTmwSQ4i5
|
|
3790
3820
|
user:
|
|
3791
3821
|
id: cus_UkLWZg9DAJ
|
|
3792
3822
|
email: newuser@example.com
|
|
@@ -3900,12 +3930,12 @@ paths:
|
|
|
3900
3930
|
application/json:
|
|
3901
3931
|
example:
|
|
3902
3932
|
id: cus_UkLWZg9DAJ
|
|
3903
|
-
email:
|
|
3904
|
-
first_name:
|
|
3905
|
-
last_name:
|
|
3933
|
+
email: jama.wolff@lynch.biz
|
|
3934
|
+
first_name: Catarina
|
|
3935
|
+
last_name: Padberg
|
|
3906
3936
|
phone: 555-555-0199
|
|
3907
3937
|
accepts_email_marketing: false
|
|
3908
|
-
full_name:
|
|
3938
|
+
full_name: Catarina Padberg
|
|
3909
3939
|
available_store_credit_total: '0'
|
|
3910
3940
|
display_available_store_credit_total: "$0.00"
|
|
3911
3941
|
addresses:
|
|
@@ -3913,7 +3943,7 @@ paths:
|
|
|
3913
3943
|
first_name: John
|
|
3914
3944
|
last_name: Doe
|
|
3915
3945
|
full_name: John Doe
|
|
3916
|
-
address1:
|
|
3946
|
+
address1: 160 Lovely Street
|
|
3917
3947
|
address2: Northwest
|
|
3918
3948
|
postal_code: '10118'
|
|
3919
3949
|
city: New York
|
|
@@ -3931,7 +3961,7 @@ paths:
|
|
|
3931
3961
|
first_name: John
|
|
3932
3962
|
last_name: Doe
|
|
3933
3963
|
full_name: John Doe
|
|
3934
|
-
address1:
|
|
3964
|
+
address1: 159 Lovely Street
|
|
3935
3965
|
address2: Northwest
|
|
3936
3966
|
postal_code: '10118'
|
|
3937
3967
|
city: New York
|
|
@@ -3950,7 +3980,7 @@ paths:
|
|
|
3950
3980
|
first_name: John
|
|
3951
3981
|
last_name: Doe
|
|
3952
3982
|
full_name: John Doe
|
|
3953
|
-
address1:
|
|
3983
|
+
address1: 160 Lovely Street
|
|
3954
3984
|
address2: Northwest
|
|
3955
3985
|
postal_code: '10118'
|
|
3956
3986
|
city: New York
|
|
@@ -3969,7 +3999,7 @@ paths:
|
|
|
3969
3999
|
first_name: John
|
|
3970
4000
|
last_name: Doe
|
|
3971
4001
|
full_name: John Doe
|
|
3972
|
-
address1:
|
|
4002
|
+
address1: 159 Lovely Street
|
|
3973
4003
|
address2: Northwest
|
|
3974
4004
|
postal_code: '10118'
|
|
3975
4005
|
city: New York
|
|
@@ -4039,7 +4069,7 @@ paths:
|
|
|
4039
4069
|
application/json:
|
|
4040
4070
|
example:
|
|
4041
4071
|
id: cus_UkLWZg9DAJ
|
|
4042
|
-
email:
|
|
4072
|
+
email: kiera@treutel.com
|
|
4043
4073
|
first_name: Updated
|
|
4044
4074
|
last_name: Name
|
|
4045
4075
|
phone: 555-555-0199
|
|
@@ -4052,7 +4082,7 @@ paths:
|
|
|
4052
4082
|
first_name: John
|
|
4053
4083
|
last_name: Doe
|
|
4054
4084
|
full_name: John Doe
|
|
4055
|
-
address1:
|
|
4085
|
+
address1: 162 Lovely Street
|
|
4056
4086
|
address2: Northwest
|
|
4057
4087
|
postal_code: '10118'
|
|
4058
4088
|
city: New York
|
|
@@ -4070,7 +4100,7 @@ paths:
|
|
|
4070
4100
|
first_name: John
|
|
4071
4101
|
last_name: Doe
|
|
4072
4102
|
full_name: John Doe
|
|
4073
|
-
address1:
|
|
4103
|
+
address1: 161 Lovely Street
|
|
4074
4104
|
address2: Northwest
|
|
4075
4105
|
postal_code: '10118'
|
|
4076
4106
|
city: New York
|
|
@@ -4089,7 +4119,7 @@ paths:
|
|
|
4089
4119
|
first_name: John
|
|
4090
4120
|
last_name: Doe
|
|
4091
4121
|
full_name: John Doe
|
|
4092
|
-
address1:
|
|
4122
|
+
address1: 162 Lovely Street
|
|
4093
4123
|
address2: Northwest
|
|
4094
4124
|
postal_code: '10118'
|
|
4095
4125
|
city: New York
|
|
@@ -4108,7 +4138,7 @@ paths:
|
|
|
4108
4138
|
first_name: John
|
|
4109
4139
|
last_name: Doe
|
|
4110
4140
|
full_name: John Doe
|
|
4111
|
-
address1:
|
|
4141
|
+
address1: 161 Lovely Street
|
|
4112
4142
|
address2: Northwest
|
|
4113
4143
|
postal_code: '10118'
|
|
4114
4144
|
city: New York
|
|
@@ -4279,9 +4309,9 @@ paths:
|
|
|
4279
4309
|
example:
|
|
4280
4310
|
id: cart_UkLWZg9DAJ
|
|
4281
4311
|
market_id:
|
|
4282
|
-
number:
|
|
4283
|
-
token:
|
|
4284
|
-
email:
|
|
4312
|
+
number: R549797108
|
|
4313
|
+
token: dtJjZuWMLKEesDsMRZvLQQgWuYY9MuUwL2U
|
|
4314
|
+
email: jadwiga@dubuque.name
|
|
4285
4315
|
customer_note:
|
|
4286
4316
|
currency: USD
|
|
4287
4317
|
locale: en
|
|
@@ -4330,8 +4360,8 @@ paths:
|
|
|
4330
4360
|
variant_id: variant_UkLWZg9DAJ
|
|
4331
4361
|
quantity: 1
|
|
4332
4362
|
currency: USD
|
|
4333
|
-
name: Product
|
|
4334
|
-
slug: product-
|
|
4363
|
+
name: Product 1111931
|
|
4364
|
+
slug: product-1111931
|
|
4335
4365
|
options_text: ''
|
|
4336
4366
|
price: '10.0'
|
|
4337
4367
|
display_price: "$10.00"
|
|
@@ -4356,7 +4386,7 @@ paths:
|
|
|
4356
4386
|
digital_links: []
|
|
4357
4387
|
fulfillments:
|
|
4358
4388
|
- id: ful_UkLWZg9DAJ
|
|
4359
|
-
number:
|
|
4389
|
+
number: H10253682077
|
|
4360
4390
|
tracking: U10000
|
|
4361
4391
|
tracking_url:
|
|
4362
4392
|
cost: '100.0'
|
|
@@ -4385,7 +4415,7 @@ paths:
|
|
|
4385
4415
|
stock_location:
|
|
4386
4416
|
id: sloc_UkLWZg9DAJ
|
|
4387
4417
|
state_abbr: NY
|
|
4388
|
-
name:
|
|
4418
|
+
name: Clark Gerlach
|
|
4389
4419
|
address1: 1600 Pennsylvania Ave NW
|
|
4390
4420
|
city: Washington
|
|
4391
4421
|
zipcode: '20500'
|
|
@@ -4417,7 +4447,7 @@ paths:
|
|
|
4417
4447
|
first_name: John
|
|
4418
4448
|
last_name: Doe
|
|
4419
4449
|
full_name: John Doe
|
|
4420
|
-
address1:
|
|
4450
|
+
address1: 179 Lovely Street
|
|
4421
4451
|
address2: Northwest
|
|
4422
4452
|
postal_code: '10118'
|
|
4423
4453
|
city: New York
|
|
@@ -4436,7 +4466,7 @@ paths:
|
|
|
4436
4466
|
first_name: John
|
|
4437
4467
|
last_name: Doe
|
|
4438
4468
|
full_name: John Doe
|
|
4439
|
-
address1:
|
|
4469
|
+
address1: 180 Lovely Street
|
|
4440
4470
|
address2: Northwest
|
|
4441
4471
|
postal_code: '10118'
|
|
4442
4472
|
city: New York
|
|
@@ -4539,9 +4569,9 @@ paths:
|
|
|
4539
4569
|
example:
|
|
4540
4570
|
id: cart_UkLWZg9DAJ
|
|
4541
4571
|
market_id:
|
|
4542
|
-
number:
|
|
4543
|
-
token:
|
|
4544
|
-
email:
|
|
4572
|
+
number: R750836348
|
|
4573
|
+
token: uesByPtiBKoM7CoRrEKxrNXDHDLP4WQHVEg
|
|
4574
|
+
email: earlean@fay.ca
|
|
4545
4575
|
customer_note:
|
|
4546
4576
|
currency: USD
|
|
4547
4577
|
locale: en
|
|
@@ -4583,8 +4613,8 @@ paths:
|
|
|
4583
4613
|
variant_id: variant_UkLWZg9DAJ
|
|
4584
4614
|
quantity: 1
|
|
4585
4615
|
currency: USD
|
|
4586
|
-
name: Product
|
|
4587
|
-
slug: product-
|
|
4616
|
+
name: Product 1136391
|
|
4617
|
+
slug: product-1136391
|
|
4588
4618
|
options_text: ''
|
|
4589
4619
|
price: '10.0'
|
|
4590
4620
|
display_price: "$10.00"
|
|
@@ -4609,7 +4639,7 @@ paths:
|
|
|
4609
4639
|
digital_links: []
|
|
4610
4640
|
fulfillments:
|
|
4611
4641
|
- id: ful_UkLWZg9DAJ
|
|
4612
|
-
number:
|
|
4642
|
+
number: H71965274390
|
|
4613
4643
|
tracking: U10000
|
|
4614
4644
|
tracking_url:
|
|
4615
4645
|
cost: '100.0'
|
|
@@ -4638,7 +4668,7 @@ paths:
|
|
|
4638
4668
|
stock_location:
|
|
4639
4669
|
id: sloc_UkLWZg9DAJ
|
|
4640
4670
|
state_abbr: NY
|
|
4641
|
-
name:
|
|
4671
|
+
name: Drusilla Greenfelder
|
|
4642
4672
|
address1: 1600 Pennsylvania Ave NW
|
|
4643
4673
|
city: Washington
|
|
4644
4674
|
zipcode: '20500'
|
|
@@ -4670,7 +4700,7 @@ paths:
|
|
|
4670
4700
|
first_name: John
|
|
4671
4701
|
last_name: Doe
|
|
4672
4702
|
full_name: John Doe
|
|
4673
|
-
address1:
|
|
4703
|
+
address1: 187 Lovely Street
|
|
4674
4704
|
address2: Northwest
|
|
4675
4705
|
postal_code: '10118'
|
|
4676
4706
|
city: New York
|
|
@@ -4689,7 +4719,7 @@ paths:
|
|
|
4689
4719
|
first_name: John
|
|
4690
4720
|
last_name: Doe
|
|
4691
4721
|
full_name: John Doe
|
|
4692
|
-
address1:
|
|
4722
|
+
address1: 188 Lovely Street
|
|
4693
4723
|
address2: Northwest
|
|
4694
4724
|
postal_code: '10118'
|
|
4695
4725
|
city: New York
|
|
@@ -4781,9 +4811,9 @@ paths:
|
|
|
4781
4811
|
example:
|
|
4782
4812
|
id: cart_UkLWZg9DAJ
|
|
4783
4813
|
market_id:
|
|
4784
|
-
number:
|
|
4785
|
-
token:
|
|
4786
|
-
email:
|
|
4814
|
+
number: R495333435
|
|
4815
|
+
token: vr5NsDydPesecXCDNmvqdhrE1FH96kV3K9s
|
|
4816
|
+
email: emil@abshiremayer.biz
|
|
4787
4817
|
customer_note:
|
|
4788
4818
|
currency: USD
|
|
4789
4819
|
locale: en
|
|
@@ -4827,8 +4857,8 @@ paths:
|
|
|
4827
4857
|
variant_id: variant_UkLWZg9DAJ
|
|
4828
4858
|
quantity: 1
|
|
4829
4859
|
currency: USD
|
|
4830
|
-
name: Product
|
|
4831
|
-
slug: product-
|
|
4860
|
+
name: Product 1159495
|
|
4861
|
+
slug: product-1159495
|
|
4832
4862
|
options_text: ''
|
|
4833
4863
|
price: '10.0'
|
|
4834
4864
|
display_price: "$10.00"
|
|
@@ -4853,7 +4883,7 @@ paths:
|
|
|
4853
4883
|
digital_links: []
|
|
4854
4884
|
fulfillments:
|
|
4855
4885
|
- id: ful_UkLWZg9DAJ
|
|
4856
|
-
number:
|
|
4886
|
+
number: H32451339376
|
|
4857
4887
|
tracking: U10000
|
|
4858
4888
|
tracking_url:
|
|
4859
4889
|
cost: '100.0'
|
|
@@ -4882,7 +4912,7 @@ paths:
|
|
|
4882
4912
|
stock_location:
|
|
4883
4913
|
id: sloc_UkLWZg9DAJ
|
|
4884
4914
|
state_abbr: NY
|
|
4885
|
-
name:
|
|
4915
|
+
name: Danika Wiza
|
|
4886
4916
|
address1: 1600 Pennsylvania Ave NW
|
|
4887
4917
|
city: Washington
|
|
4888
4918
|
zipcode: '20500'
|
|
@@ -4914,7 +4944,7 @@ paths:
|
|
|
4914
4944
|
first_name: John
|
|
4915
4945
|
last_name: Doe
|
|
4916
4946
|
full_name: John Doe
|
|
4917
|
-
address1:
|
|
4947
|
+
address1: 195 Lovely Street
|
|
4918
4948
|
address2: Northwest
|
|
4919
4949
|
postal_code: '10118'
|
|
4920
4950
|
city: New York
|
|
@@ -4933,7 +4963,7 @@ paths:
|
|
|
4933
4963
|
first_name: John
|
|
4934
4964
|
last_name: Doe
|
|
4935
4965
|
full_name: John Doe
|
|
4936
|
-
address1:
|
|
4966
|
+
address1: 196 Lovely Street
|
|
4937
4967
|
address2: Northwest
|
|
4938
4968
|
postal_code: '10118'
|
|
4939
4969
|
city: New York
|
|
@@ -5039,9 +5069,9 @@ paths:
|
|
|
5039
5069
|
example:
|
|
5040
5070
|
id: cart_UkLWZg9DAJ
|
|
5041
5071
|
market_id:
|
|
5042
|
-
number:
|
|
5043
|
-
token:
|
|
5044
|
-
email:
|
|
5072
|
+
number: R144554045
|
|
5073
|
+
token: RuTHka2EQdEPmHa7PXXzb8EAr5c9vSivWun
|
|
5074
|
+
email: claribel.funk@townekuhlman.us
|
|
5045
5075
|
customer_note:
|
|
5046
5076
|
currency: USD
|
|
5047
5077
|
locale: en
|
|
@@ -5080,8 +5110,8 @@ paths:
|
|
|
5080
5110
|
variant_id: variant_UkLWZg9DAJ
|
|
5081
5111
|
quantity: 1
|
|
5082
5112
|
currency: USD
|
|
5083
|
-
name: Product
|
|
5084
|
-
slug: product-
|
|
5113
|
+
name: Product 1174034
|
|
5114
|
+
slug: product-1174034
|
|
5085
5115
|
options_text: ''
|
|
5086
5116
|
price: '10.0'
|
|
5087
5117
|
display_price: "$10.00"
|
|
@@ -5106,7 +5136,7 @@ paths:
|
|
|
5106
5136
|
digital_links: []
|
|
5107
5137
|
fulfillments:
|
|
5108
5138
|
- id: ful_UkLWZg9DAJ
|
|
5109
|
-
number:
|
|
5139
|
+
number: H20393389861
|
|
5110
5140
|
tracking: U10000
|
|
5111
5141
|
tracking_url:
|
|
5112
5142
|
cost: '100.0'
|
|
@@ -5135,7 +5165,7 @@ paths:
|
|
|
5135
5165
|
stock_location:
|
|
5136
5166
|
id: sloc_UkLWZg9DAJ
|
|
5137
5167
|
state_abbr: NY
|
|
5138
|
-
name:
|
|
5168
|
+
name: Gordon Pfeffer
|
|
5139
5169
|
address1: 1600 Pennsylvania Ave NW
|
|
5140
5170
|
city: Washington
|
|
5141
5171
|
zipcode: '20500'
|
|
@@ -5164,8 +5194,8 @@ paths:
|
|
|
5164
5194
|
payments:
|
|
5165
5195
|
- id: py_UkLWZg9DAJ
|
|
5166
5196
|
payment_method_id: pm_UkLWZg9DAJ
|
|
5167
|
-
response_code: 1-SC-
|
|
5168
|
-
number:
|
|
5197
|
+
response_code: 1-SC-20260526161400395109
|
|
5198
|
+
number: PGO55NWN
|
|
5169
5199
|
amount: '50.0'
|
|
5170
5200
|
display_amount: "$50.00"
|
|
5171
5201
|
status: checkout
|
|
@@ -5192,7 +5222,7 @@ paths:
|
|
|
5192
5222
|
first_name: John
|
|
5193
5223
|
last_name: Doe
|
|
5194
5224
|
full_name: John Doe
|
|
5195
|
-
address1:
|
|
5225
|
+
address1: 203 Lovely Street
|
|
5196
5226
|
address2: Northwest
|
|
5197
5227
|
postal_code: '10118'
|
|
5198
5228
|
city: New York
|
|
@@ -5211,7 +5241,7 @@ paths:
|
|
|
5211
5241
|
first_name: John
|
|
5212
5242
|
last_name: Doe
|
|
5213
5243
|
full_name: John Doe
|
|
5214
|
-
address1:
|
|
5244
|
+
address1: 204 Lovely Street
|
|
5215
5245
|
address2: Northwest
|
|
5216
5246
|
postal_code: '10118'
|
|
5217
5247
|
city: New York
|
|
@@ -5344,9 +5374,9 @@ paths:
|
|
|
5344
5374
|
example:
|
|
5345
5375
|
id: cart_UkLWZg9DAJ
|
|
5346
5376
|
market_id:
|
|
5347
|
-
number:
|
|
5348
|
-
token:
|
|
5349
|
-
email:
|
|
5377
|
+
number: R375402748
|
|
5378
|
+
token: zK6CyYENcBq5VLBnwSXE35w1RrR7o2sTgky
|
|
5379
|
+
email: tonita@klein.biz
|
|
5350
5380
|
customer_note:
|
|
5351
5381
|
currency: USD
|
|
5352
5382
|
locale: en
|
|
@@ -5388,8 +5418,8 @@ paths:
|
|
|
5388
5418
|
variant_id: variant_UkLWZg9DAJ
|
|
5389
5419
|
quantity: 1
|
|
5390
5420
|
currency: USD
|
|
5391
|
-
name: Product
|
|
5392
|
-
slug: product-
|
|
5421
|
+
name: Product 1215119
|
|
5422
|
+
slug: product-1215119
|
|
5393
5423
|
options_text: ''
|
|
5394
5424
|
price: '10.0'
|
|
5395
5425
|
display_price: "$10.00"
|
|
@@ -5414,7 +5444,7 @@ paths:
|
|
|
5414
5444
|
digital_links: []
|
|
5415
5445
|
fulfillments:
|
|
5416
5446
|
- id: ful_UkLWZg9DAJ
|
|
5417
|
-
number:
|
|
5447
|
+
number: H49636801244
|
|
5418
5448
|
tracking: U10000
|
|
5419
5449
|
tracking_url:
|
|
5420
5450
|
cost: '100.0'
|
|
@@ -5443,7 +5473,7 @@ paths:
|
|
|
5443
5473
|
stock_location:
|
|
5444
5474
|
id: sloc_UkLWZg9DAJ
|
|
5445
5475
|
state_abbr: NY
|
|
5446
|
-
name:
|
|
5476
|
+
name: Melvina Gottlieb
|
|
5447
5477
|
address1: 1600 Pennsylvania Ave NW
|
|
5448
5478
|
city: Washington
|
|
5449
5479
|
zipcode: '20500'
|
|
@@ -5472,8 +5502,8 @@ paths:
|
|
|
5472
5502
|
payments:
|
|
5473
5503
|
- id: py_UkLWZg9DAJ
|
|
5474
5504
|
payment_method_id: pm_UkLWZg9DAJ
|
|
5475
|
-
response_code: 1-SC-
|
|
5476
|
-
number:
|
|
5505
|
+
response_code: 1-SC-20260526161402955039
|
|
5506
|
+
number: PIQFGKXI
|
|
5477
5507
|
amount: '50.0'
|
|
5478
5508
|
display_amount: "$50.00"
|
|
5479
5509
|
status: invalid
|
|
@@ -5500,7 +5530,7 @@ paths:
|
|
|
5500
5530
|
first_name: John
|
|
5501
5531
|
last_name: Doe
|
|
5502
5532
|
full_name: John Doe
|
|
5503
|
-
address1:
|
|
5533
|
+
address1: 219 Lovely Street
|
|
5504
5534
|
address2: Northwest
|
|
5505
5535
|
postal_code: '10118'
|
|
5506
5536
|
city: New York
|
|
@@ -5519,7 +5549,7 @@ paths:
|
|
|
5519
5549
|
first_name: John
|
|
5520
5550
|
last_name: Doe
|
|
5521
5551
|
full_name: John Doe
|
|
5522
|
-
address1:
|
|
5552
|
+
address1: 220 Lovely Street
|
|
5523
5553
|
address2: Northwest
|
|
5524
5554
|
postal_code: '10118'
|
|
5525
5555
|
city: New York
|
|
@@ -5597,7 +5627,7 @@ paths:
|
|
|
5597
5627
|
example:
|
|
5598
5628
|
data:
|
|
5599
5629
|
- id: gc_UkLWZg9DAJ
|
|
5600
|
-
code:
|
|
5630
|
+
code: 91F1E57C6C99A62C
|
|
5601
5631
|
status: active
|
|
5602
5632
|
currency: USD
|
|
5603
5633
|
amount: '10.0'
|
|
@@ -5693,7 +5723,7 @@ paths:
|
|
|
5693
5723
|
application/json:
|
|
5694
5724
|
example:
|
|
5695
5725
|
id: gc_UkLWZg9DAJ
|
|
5696
|
-
code:
|
|
5726
|
+
code: 76D77B6CFFA255C8
|
|
5697
5727
|
status: active
|
|
5698
5728
|
currency: USD
|
|
5699
5729
|
amount: '10.0'
|
|
@@ -5784,9 +5814,9 @@ paths:
|
|
|
5784
5814
|
example:
|
|
5785
5815
|
id: cart_UkLWZg9DAJ
|
|
5786
5816
|
market_id:
|
|
5787
|
-
number:
|
|
5788
|
-
token:
|
|
5789
|
-
email:
|
|
5817
|
+
number: R128024977
|
|
5818
|
+
token: snfWbJhSsShSGdMgtj6NVNbk7SVZvg984Xb
|
|
5819
|
+
email: danica.trantow@mcglynndicki.name
|
|
5790
5820
|
customer_note:
|
|
5791
5821
|
currency: USD
|
|
5792
5822
|
locale: en
|
|
@@ -5834,8 +5864,8 @@ paths:
|
|
|
5834
5864
|
variant_id: variant_UkLWZg9DAJ
|
|
5835
5865
|
quantity: 1
|
|
5836
5866
|
currency: USD
|
|
5837
|
-
name: Product
|
|
5838
|
-
slug: product-
|
|
5867
|
+
name: Product 1244584
|
|
5868
|
+
slug: product-1244584
|
|
5839
5869
|
options_text: ''
|
|
5840
5870
|
price: '10.0'
|
|
5841
5871
|
display_price: "$10.00"
|
|
@@ -5862,8 +5892,8 @@ paths:
|
|
|
5862
5892
|
variant_id: variant_gbHJdmfrXB
|
|
5863
5893
|
quantity: 1
|
|
5864
5894
|
currency: USD
|
|
5865
|
-
name: Product
|
|
5866
|
-
slug: product-
|
|
5895
|
+
name: Product 1253628
|
|
5896
|
+
slug: product-1253628
|
|
5867
5897
|
options_text: ''
|
|
5868
5898
|
price: '19.99'
|
|
5869
5899
|
display_price: "$19.99"
|
|
@@ -5893,7 +5923,7 @@ paths:
|
|
|
5893
5923
|
first_name: John
|
|
5894
5924
|
last_name: Doe
|
|
5895
5925
|
full_name: John Doe
|
|
5896
|
-
address1:
|
|
5926
|
+
address1: 234 Lovely Street
|
|
5897
5927
|
address2: Northwest
|
|
5898
5928
|
postal_code: '10118'
|
|
5899
5929
|
city: New York
|
|
@@ -6006,9 +6036,9 @@ paths:
|
|
|
6006
6036
|
example:
|
|
6007
6037
|
id: cart_UkLWZg9DAJ
|
|
6008
6038
|
market_id:
|
|
6009
|
-
number:
|
|
6010
|
-
token:
|
|
6011
|
-
email:
|
|
6039
|
+
number: R216067679
|
|
6040
|
+
token: HBo9TtU6Kra7Pkqey8Rhw5WW93WSsLFKbcb
|
|
6041
|
+
email: lowell@lakin.co.uk
|
|
6012
6042
|
customer_note:
|
|
6013
6043
|
currency: USD
|
|
6014
6044
|
locale: en
|
|
@@ -6053,8 +6083,8 @@ paths:
|
|
|
6053
6083
|
variant_id: variant_UkLWZg9DAJ
|
|
6054
6084
|
quantity: 1
|
|
6055
6085
|
currency: USD
|
|
6056
|
-
name: Product
|
|
6057
|
-
slug: product-
|
|
6086
|
+
name: Product 1289337
|
|
6087
|
+
slug: product-1289337
|
|
6058
6088
|
options_text: ''
|
|
6059
6089
|
price: '10.0'
|
|
6060
6090
|
display_price: "$10.00"
|
|
@@ -6084,7 +6114,7 @@ paths:
|
|
|
6084
6114
|
first_name: John
|
|
6085
6115
|
last_name: Doe
|
|
6086
6116
|
full_name: John Doe
|
|
6087
|
-
address1:
|
|
6117
|
+
address1: 243 Lovely Street
|
|
6088
6118
|
address2: Northwest
|
|
6089
6119
|
postal_code: '10118'
|
|
6090
6120
|
city: New York
|
|
@@ -6177,9 +6207,9 @@ paths:
|
|
|
6177
6207
|
example:
|
|
6178
6208
|
id: cart_UkLWZg9DAJ
|
|
6179
6209
|
market_id:
|
|
6180
|
-
number:
|
|
6181
|
-
token:
|
|
6182
|
-
email:
|
|
6210
|
+
number: R262930205
|
|
6211
|
+
token: 6F91AsEuASghgSqqpwTgtCCF84SEMYm1ozP
|
|
6212
|
+
email: gwenn_hessel@auerreilly.ca
|
|
6183
6213
|
customer_note:
|
|
6184
6214
|
currency: USD
|
|
6185
6215
|
locale: en
|
|
@@ -6230,7 +6260,7 @@ paths:
|
|
|
6230
6260
|
first_name: John
|
|
6231
6261
|
last_name: Doe
|
|
6232
6262
|
full_name: John Doe
|
|
6233
|
-
address1:
|
|
6263
|
+
address1: 246 Lovely Street
|
|
6234
6264
|
address2: Northwest
|
|
6235
6265
|
postal_code: '10118'
|
|
6236
6266
|
city: New York
|
|
@@ -6370,6 +6400,8 @@ paths:
|
|
|
6370
6400
|
default_locale: en
|
|
6371
6401
|
tax_inclusive: false
|
|
6372
6402
|
default: true
|
|
6403
|
+
country_isos:
|
|
6404
|
+
- US
|
|
6373
6405
|
supported_locales:
|
|
6374
6406
|
- en
|
|
6375
6407
|
- es
|
|
@@ -6385,6 +6417,9 @@ paths:
|
|
|
6385
6417
|
default_locale: de
|
|
6386
6418
|
tax_inclusive: true
|
|
6387
6419
|
default: false
|
|
6420
|
+
country_isos:
|
|
6421
|
+
- DE
|
|
6422
|
+
- FR
|
|
6388
6423
|
supported_locales:
|
|
6389
6424
|
- de
|
|
6390
6425
|
- en
|
|
@@ -6469,6 +6504,9 @@ paths:
|
|
|
6469
6504
|
default_locale: de
|
|
6470
6505
|
tax_inclusive: true
|
|
6471
6506
|
default: false
|
|
6507
|
+
country_isos:
|
|
6508
|
+
- DE
|
|
6509
|
+
- FR
|
|
6472
6510
|
supported_locales:
|
|
6473
6511
|
- de
|
|
6474
6512
|
- en
|
|
@@ -6549,6 +6587,9 @@ paths:
|
|
|
6549
6587
|
default_locale: de
|
|
6550
6588
|
tax_inclusive: true
|
|
6551
6589
|
default: false
|
|
6590
|
+
country_isos:
|
|
6591
|
+
- DE
|
|
6592
|
+
- FR
|
|
6552
6593
|
supported_locales:
|
|
6553
6594
|
- de
|
|
6554
6595
|
- en
|
|
@@ -6757,9 +6798,6 @@ paths:
|
|
|
6757
6798
|
|
|
6758
6799
|
const subscriber = await client.newsletterSubscribers.create({
|
|
6759
6800
|
email: 'subscriber@example.com',
|
|
6760
|
-
// Where the verification token should land. Must be in the store's
|
|
6761
|
-
// allowed origins. The storefront's webhook handler will send the
|
|
6762
|
-
// confirmation email with a link to `<redirect_url>?token=<token>`.
|
|
6763
6801
|
redirect_url: 'https://your-store.com/newsletter/confirm',
|
|
6764
6802
|
})
|
|
6765
6803
|
parameters:
|
|
@@ -6782,11 +6820,11 @@ paths:
|
|
|
6782
6820
|
application/json:
|
|
6783
6821
|
example:
|
|
6784
6822
|
id: sub_UkLWZg9DAJ
|
|
6785
|
-
email:
|
|
6786
|
-
created_at: '2026-05-
|
|
6787
|
-
updated_at: '2026-05-
|
|
6823
|
+
email: harriet.conroy@mohr.co.uk
|
|
6824
|
+
created_at: '2026-05-26T16:14:11.183Z'
|
|
6825
|
+
updated_at: '2026-05-26T16:14:11.186Z'
|
|
6788
6826
|
verified: true
|
|
6789
|
-
verified_at: '2026-05-
|
|
6827
|
+
verified_at: '2026-05-26T16:14:11Z'
|
|
6790
6828
|
customer_id: cus_UkLWZg9DAJ
|
|
6791
6829
|
schema:
|
|
6792
6830
|
"$ref": "#/components/schemas/NewsletterSubscriber"
|
|
@@ -6865,10 +6903,10 @@ paths:
|
|
|
6865
6903
|
example:
|
|
6866
6904
|
id: sub_UkLWZg9DAJ
|
|
6867
6905
|
email: pending@example.com
|
|
6868
|
-
created_at: '2026-05-
|
|
6869
|
-
updated_at: '2026-05-
|
|
6906
|
+
created_at: '2026-05-26T16:14:11.236Z'
|
|
6907
|
+
updated_at: '2026-05-26T16:14:11.255Z'
|
|
6870
6908
|
verified: true
|
|
6871
|
-
verified_at: '2026-05-
|
|
6909
|
+
verified_at: '2026-05-26T16:14:11Z'
|
|
6872
6910
|
customer_id:
|
|
6873
6911
|
schema:
|
|
6874
6912
|
"$ref": "#/components/schemas/NewsletterSubscriber"
|
|
@@ -6966,7 +7004,7 @@ paths:
|
|
|
6966
7004
|
id: or_UkLWZg9DAJ
|
|
6967
7005
|
market_id:
|
|
6968
7006
|
channel_id: ch_UkLWZg9DAJ
|
|
6969
|
-
number:
|
|
7007
|
+
number: R528526445
|
|
6970
7008
|
email: guest@example.com
|
|
6971
7009
|
customer_note:
|
|
6972
7010
|
currency: USD
|
|
@@ -6994,7 +7032,7 @@ paths:
|
|
|
6994
7032
|
display_delivery_total: "$100.00"
|
|
6995
7033
|
fulfillment_status:
|
|
6996
7034
|
payment_status:
|
|
6997
|
-
completed_at: '2026-05-
|
|
7035
|
+
completed_at: '2026-05-26T16:14:12.058Z'
|
|
6998
7036
|
store_credit_total: '0.0'
|
|
6999
7037
|
display_store_credit_total: "$0.00"
|
|
7000
7038
|
covered_by_store_credit: false
|
|
@@ -7004,8 +7042,8 @@ paths:
|
|
|
7004
7042
|
variant_id: variant_UkLWZg9DAJ
|
|
7005
7043
|
quantity: 1
|
|
7006
7044
|
currency: USD
|
|
7007
|
-
name: Product
|
|
7008
|
-
slug: product-
|
|
7045
|
+
name: Product 1325879
|
|
7046
|
+
slug: product-1325879
|
|
7009
7047
|
options_text: ''
|
|
7010
7048
|
price: '10.0'
|
|
7011
7049
|
display_price: "$10.00"
|
|
@@ -7030,7 +7068,7 @@ paths:
|
|
|
7030
7068
|
digital_links: []
|
|
7031
7069
|
fulfillments:
|
|
7032
7070
|
- id: ful_UkLWZg9DAJ
|
|
7033
|
-
number:
|
|
7071
|
+
number: H26728427796
|
|
7034
7072
|
tracking: U10000
|
|
7035
7073
|
tracking_url:
|
|
7036
7074
|
cost: '100.0'
|
|
@@ -7059,7 +7097,7 @@ paths:
|
|
|
7059
7097
|
stock_location:
|
|
7060
7098
|
id: sloc_UkLWZg9DAJ
|
|
7061
7099
|
state_abbr: NY
|
|
7062
|
-
name:
|
|
7100
|
+
name: Maida Rogahn
|
|
7063
7101
|
address1: 1600 Pennsylvania Ave NW
|
|
7064
7102
|
city: Washington
|
|
7065
7103
|
zipcode: '20500'
|
|
@@ -7091,7 +7129,7 @@ paths:
|
|
|
7091
7129
|
first_name: John
|
|
7092
7130
|
last_name: Doe
|
|
7093
7131
|
full_name: John Doe
|
|
7094
|
-
address1:
|
|
7132
|
+
address1: 256 Lovely Street
|
|
7095
7133
|
address2: Northwest
|
|
7096
7134
|
postal_code: '10118'
|
|
7097
7135
|
city: New York
|
|
@@ -7110,7 +7148,7 @@ paths:
|
|
|
7110
7148
|
first_name: John
|
|
7111
7149
|
last_name: Doe
|
|
7112
7150
|
full_name: John Doe
|
|
7113
|
-
address1:
|
|
7151
|
+
address1: 257 Lovely Street
|
|
7114
7152
|
address2: Northwest
|
|
7115
7153
|
postal_code: '10118'
|
|
7116
7154
|
city: New York
|
|
@@ -7204,9 +7242,9 @@ paths:
|
|
|
7204
7242
|
id: ps_gbHJdmfrXB
|
|
7205
7243
|
status: pending
|
|
7206
7244
|
currency: USD
|
|
7207
|
-
external_id:
|
|
7245
|
+
external_id: bogus_7d70cfacf0ae7492cf904547
|
|
7208
7246
|
external_data:
|
|
7209
|
-
client_secret:
|
|
7247
|
+
client_secret: bogus_secret_ede104f24aa5154c
|
|
7210
7248
|
customer_external_id:
|
|
7211
7249
|
expires_at:
|
|
7212
7250
|
amount: '110.0'
|
|
@@ -7304,7 +7342,7 @@ paths:
|
|
|
7304
7342
|
id: ps_UkLWZg9DAJ
|
|
7305
7343
|
status: pending
|
|
7306
7344
|
currency: USD
|
|
7307
|
-
external_id:
|
|
7345
|
+
external_id: bogus_4c7d24178351b3d5952b3cf5
|
|
7308
7346
|
external_data:
|
|
7309
7347
|
client_secret: secret_123
|
|
7310
7348
|
customer_external_id:
|
|
@@ -7366,7 +7404,7 @@ paths:
|
|
|
7366
7404
|
id: ps_UkLWZg9DAJ
|
|
7367
7405
|
status: pending
|
|
7368
7406
|
currency: USD
|
|
7369
|
-
external_id:
|
|
7407
|
+
external_id: bogus_331c7200fe221193bf414698
|
|
7370
7408
|
external_data:
|
|
7371
7409
|
client_secret: secret_123
|
|
7372
7410
|
customer_external_id:
|
|
@@ -7468,7 +7506,7 @@ paths:
|
|
|
7468
7506
|
id: ps_UkLWZg9DAJ
|
|
7469
7507
|
status: completed
|
|
7470
7508
|
currency: USD
|
|
7471
|
-
external_id:
|
|
7509
|
+
external_id: bogus_2ebf387c2f1e00f23440c181
|
|
7472
7510
|
external_data:
|
|
7473
7511
|
client_secret: secret_123
|
|
7474
7512
|
customer_external_id:
|
|
@@ -7553,8 +7591,8 @@ paths:
|
|
|
7553
7591
|
example:
|
|
7554
7592
|
id: pss_gbHJdmfrXB
|
|
7555
7593
|
status: pending
|
|
7556
|
-
external_id:
|
|
7557
|
-
external_client_secret:
|
|
7594
|
+
external_id: bogus_seti_e60689fe4c66251e2b4dd2f4
|
|
7595
|
+
external_client_secret: bogus_seti_secret_633045dc9ddab700
|
|
7558
7596
|
external_data: {}
|
|
7559
7597
|
payment_method_id: pm_UkLWZg9DAJ
|
|
7560
7598
|
payment_source_id:
|
|
@@ -7653,8 +7691,8 @@ paths:
|
|
|
7653
7691
|
example:
|
|
7654
7692
|
id: pss_UkLWZg9DAJ
|
|
7655
7693
|
status: pending
|
|
7656
|
-
external_id:
|
|
7657
|
-
external_client_secret:
|
|
7694
|
+
external_id: seti_test_7ac50408dcea6ac09aa04e3d
|
|
7695
|
+
external_client_secret: seti_secret_77e80c695165694be5ef56b9
|
|
7658
7696
|
external_data:
|
|
7659
7697
|
client_secret: secret_123
|
|
7660
7698
|
payment_method_id: pm_UkLWZg9DAJ
|
|
@@ -7730,8 +7768,8 @@ paths:
|
|
|
7730
7768
|
example:
|
|
7731
7769
|
id: pss_UkLWZg9DAJ
|
|
7732
7770
|
status: completed
|
|
7733
|
-
external_id:
|
|
7734
|
-
external_client_secret:
|
|
7771
|
+
external_id: seti_test_6cb96d4ae6cdc1eadf02b1dc
|
|
7772
|
+
external_client_secret: seti_secret_bb0a7727be4c699d8584292f
|
|
7735
7773
|
external_data:
|
|
7736
7774
|
client_secret: secret_123
|
|
7737
7775
|
payment_method_id: pm_UkLWZg9DAJ
|
|
@@ -7825,7 +7863,7 @@ paths:
|
|
|
7825
7863
|
id: py_UkLWZg9DAJ
|
|
7826
7864
|
payment_method_id: pm_UkLWZg9DAJ
|
|
7827
7865
|
response_code:
|
|
7828
|
-
number:
|
|
7866
|
+
number: P6M3ZHJE
|
|
7829
7867
|
amount: '110.0'
|
|
7830
7868
|
display_amount: "$110.00"
|
|
7831
7869
|
status: checkout
|
|
@@ -7921,7 +7959,7 @@ paths:
|
|
|
7921
7959
|
body_html: ''
|
|
7922
7960
|
- id: pol_OIJLhNcSbf
|
|
7923
7961
|
name: Privacy Policy
|
|
7924
|
-
slug: privacy-policy-
|
|
7962
|
+
slug: privacy-policy-006f63da-6062-4a3f-9fd7-aa690f7b356c
|
|
7925
7963
|
body: We respect your privacy.
|
|
7926
7964
|
body_html: |
|
|
7927
7965
|
<div class="trix-content">
|
|
@@ -8165,13 +8203,13 @@ paths:
|
|
|
8165
8203
|
example:
|
|
8166
8204
|
data:
|
|
8167
8205
|
- id: prod_UkLWZg9DAJ
|
|
8168
|
-
name: Product
|
|
8169
|
-
slug: product-
|
|
8206
|
+
name: Product 1421251
|
|
8207
|
+
slug: product-1421251
|
|
8170
8208
|
meta_title:
|
|
8171
8209
|
meta_description:
|
|
8172
8210
|
meta_keywords:
|
|
8173
8211
|
variant_count: 1
|
|
8174
|
-
available_on: '2025-05-
|
|
8212
|
+
available_on: '2025-05-26T16:14:22.402Z'
|
|
8175
8213
|
purchasable: true
|
|
8176
8214
|
in_stock: false
|
|
8177
8215
|
backorderable: true
|
|
@@ -8193,34 +8231,43 @@ paths:
|
|
|
8193
8231
|
price_list_id:
|
|
8194
8232
|
original_price:
|
|
8195
8233
|
- id: prod_gbHJdmfrXB
|
|
8196
|
-
name: Product
|
|
8197
|
-
slug: product-
|
|
8234
|
+
name: Product 1435220
|
|
8235
|
+
slug: product-1435220
|
|
8198
8236
|
meta_title:
|
|
8199
8237
|
meta_description:
|
|
8200
8238
|
meta_keywords:
|
|
8201
8239
|
variant_count: 0
|
|
8202
|
-
available_on: '2025-05-
|
|
8240
|
+
available_on: '2025-05-26T16:14:22.472Z'
|
|
8203
8241
|
purchasable: true
|
|
8204
8242
|
in_stock: false
|
|
8205
8243
|
backorderable: true
|
|
8206
8244
|
available: true
|
|
8207
|
-
description:
|
|
8208
|
-
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
|
|
8212
|
-
|
|
8213
|
-
|
|
8214
|
-
|
|
8215
|
-
|
|
8216
|
-
|
|
8217
|
-
|
|
8218
|
-
|
|
8245
|
+
description: Architecto dignissimos nemo inventore incidunt enim.
|
|
8246
|
+
Odit accusamus repellat error saepe culpa unde eius. Cupiditate
|
|
8247
|
+
officiis voluptatem autem perferendis qui vitae omnis sunt. Debitis
|
|
8248
|
+
dolor tempore ad impedit itaque reprehenderit delectus. Doloremque
|
|
8249
|
+
laudantium iure recusandae iusto debitis laborum consequuntur.
|
|
8250
|
+
Impedit eum optio commodi tempora cum quidem. Facere voluptatum
|
|
8251
|
+
nam possimus veritatis nostrum explicabo dolore ex. Adipisci iure
|
|
8252
|
+
unde nobis itaque amet nesciunt voluptatibus impedit. Numquam
|
|
8253
|
+
in accusantium magni itaque exercitationem. Quas vero maxime voluptatem
|
|
8254
|
+
rem impedit inventore. Esse perferendis asperiores ea expedita
|
|
8255
|
+
aut tenetur soluta. Enim accusantium dolor adipisci impedit. Error
|
|
8256
|
+
maxime neque accusamus facere provident eum. Cum officia velit
|
|
8257
|
+
asperiores quod cupiditate fugiat. Possimus tenetur aut consequuntur
|
|
8258
|
+
iusto cumque quas. Ab velit ullam qui pariatur veritatis omnis.
|
|
8259
|
+
Accusantium vero occaecati explicabo neque animi commodi. Necessitatibus
|
|
8260
|
+
perspiciatis iste culpa totam quibusdam voluptate distinctio.
|
|
8261
|
+
Quod aliquam ut et autem. Saepe ut asperiores et quisquam perspiciatis
|
|
8262
|
+
molestiae. Vel recusandae sunt nemo et accusamus veniam ducimus.
|
|
8263
|
+
Laborum modi quasi perferendis culpa laboriosam quaerat magnam.
|
|
8264
|
+
Facere at tempora iusto ex magni aliquam modi debitis.
|
|
8219
8265
|
description_html: |-
|
|
8220
|
-
|
|
8221
|
-
|
|
8222
|
-
|
|
8223
|
-
|
|
8266
|
+
Architecto dignissimos nemo inventore incidunt enim. Odit accusamus repellat error saepe culpa unde eius. Cupiditate officiis voluptatem autem perferendis qui vitae omnis sunt. Debitis dolor tempore ad impedit itaque reprehenderit delectus. Doloremque laudantium iure recusandae iusto debitis laborum consequuntur.
|
|
8267
|
+
Impedit eum optio commodi tempora cum quidem. Facere voluptatum nam possimus veritatis nostrum explicabo dolore ex. Adipisci iure unde nobis itaque amet nesciunt voluptatibus impedit. Numquam in accusantium magni itaque exercitationem. Quas vero maxime voluptatem rem impedit inventore.
|
|
8268
|
+
Esse perferendis asperiores ea expedita aut tenetur soluta. Enim accusantium dolor adipisci impedit. Error maxime neque accusamus facere provident eum. Cum officia velit asperiores quod cupiditate fugiat. Possimus tenetur aut consequuntur iusto cumque quas.
|
|
8269
|
+
Ab velit ullam qui pariatur veritatis omnis. Accusantium vero occaecati explicabo neque animi commodi. Necessitatibus perspiciatis iste culpa totam quibusdam voluptate distinctio. Quod aliquam ut et autem. Saepe ut asperiores et quisquam perspiciatis molestiae.
|
|
8270
|
+
Vel recusandae sunt nemo et accusamus veniam ducimus. Laborum modi quasi perferendis culpa laboriosam quaerat magnam. Facere at tempora iusto ex magni aliquam modi debitis.
|
|
8224
8271
|
default_variant_id: variant_EfhxLZ9ck8
|
|
8225
8272
|
thumbnail_url:
|
|
8226
8273
|
tags: []
|
|
@@ -8322,13 +8369,13 @@ paths:
|
|
|
8322
8369
|
application/json:
|
|
8323
8370
|
example:
|
|
8324
8371
|
id: prod_UkLWZg9DAJ
|
|
8325
|
-
name: Product
|
|
8326
|
-
slug: product-
|
|
8372
|
+
name: Product 1702106
|
|
8373
|
+
slug: product-1702106
|
|
8327
8374
|
meta_title:
|
|
8328
8375
|
meta_description:
|
|
8329
8376
|
meta_keywords:
|
|
8330
8377
|
variant_count: 1
|
|
8331
|
-
available_on: '2025-05-
|
|
8378
|
+
available_on: '2025-05-26T16:14:24.749Z'
|
|
8332
8379
|
purchasable: true
|
|
8333
8380
|
in_stock: false
|
|
8334
8381
|
backorderable: true
|
|
@@ -8355,7 +8402,7 @@ paths:
|
|
|
8355
8402
|
amount_in_cents: 999
|
|
8356
8403
|
currency: USD
|
|
8357
8404
|
display_amount: "$9.99"
|
|
8358
|
-
recorded_at: '2026-05-
|
|
8405
|
+
recorded_at: '2026-05-11T16:14:24Z'
|
|
8359
8406
|
schema:
|
|
8360
8407
|
"$ref": "#/components/schemas/Product"
|
|
8361
8408
|
'404':
|
|
@@ -8451,7 +8498,7 @@ paths:
|
|
|
8451
8498
|
options:
|
|
8452
8499
|
- id: ctg_EfhxLZ9ck8
|
|
8453
8500
|
name: Shirts
|
|
8454
|
-
permalink: taxonomy-
|
|
8501
|
+
permalink: taxonomy-27/taxon-34/shirts
|
|
8455
8502
|
count: 2
|
|
8456
8503
|
sort_options:
|
|
8457
8504
|
- id: manual
|
|
@@ -8730,9 +8777,9 @@ paths:
|
|
|
8730
8777
|
example:
|
|
8731
8778
|
id: cart_UkLWZg9DAJ
|
|
8732
8779
|
market_id:
|
|
8733
|
-
number:
|
|
8734
|
-
token:
|
|
8735
|
-
email:
|
|
8780
|
+
number: R903776007
|
|
8781
|
+
token: oPFUDLqngFUNHBsLi5NZyBfVqQFVkab5S48
|
|
8782
|
+
email: despina.ernser@leffler.us
|
|
8736
8783
|
customer_note:
|
|
8737
8784
|
currency: USD
|
|
8738
8785
|
locale: en
|
|
@@ -8771,8 +8818,8 @@ paths:
|
|
|
8771
8818
|
variant_id: variant_UkLWZg9DAJ
|
|
8772
8819
|
quantity: 1
|
|
8773
8820
|
currency: USD
|
|
8774
|
-
name: Product
|
|
8775
|
-
slug: product-
|
|
8821
|
+
name: Product 1909153
|
|
8822
|
+
slug: product-1909153
|
|
8776
8823
|
options_text: ''
|
|
8777
8824
|
price: '10.0'
|
|
8778
8825
|
display_price: "$10.00"
|
|
@@ -8797,7 +8844,7 @@ paths:
|
|
|
8797
8844
|
digital_links: []
|
|
8798
8845
|
fulfillments:
|
|
8799
8846
|
- id: ful_UkLWZg9DAJ
|
|
8800
|
-
number:
|
|
8847
|
+
number: H71098380344
|
|
8801
8848
|
tracking: U10000
|
|
8802
8849
|
tracking_url:
|
|
8803
8850
|
cost: '100.0'
|
|
@@ -8826,7 +8873,7 @@ paths:
|
|
|
8826
8873
|
stock_location:
|
|
8827
8874
|
id: sloc_UkLWZg9DAJ
|
|
8828
8875
|
state_abbr: NY
|
|
8829
|
-
name:
|
|
8876
|
+
name: Twanna Stamm
|
|
8830
8877
|
address1: 1600 Pennsylvania Ave NW
|
|
8831
8878
|
city: Washington
|
|
8832
8879
|
zipcode: '20500'
|
|
@@ -8855,8 +8902,8 @@ paths:
|
|
|
8855
8902
|
payments:
|
|
8856
8903
|
- id: py_UkLWZg9DAJ
|
|
8857
8904
|
payment_method_id: pm_UkLWZg9DAJ
|
|
8858
|
-
response_code: 1-SC-
|
|
8859
|
-
number:
|
|
8905
|
+
response_code: 1-SC-20260526161430523363
|
|
8906
|
+
number: P1X82P2A
|
|
8860
8907
|
amount: '10.0'
|
|
8861
8908
|
display_amount: "$10.00"
|
|
8862
8909
|
status: checkout
|
|
@@ -8883,7 +8930,7 @@ paths:
|
|
|
8883
8930
|
first_name: John
|
|
8884
8931
|
last_name: Doe
|
|
8885
8932
|
full_name: John Doe
|
|
8886
|
-
address1:
|
|
8933
|
+
address1: 320 Lovely Street
|
|
8887
8934
|
address2: Northwest
|
|
8888
8935
|
postal_code: '10118'
|
|
8889
8936
|
city: New York
|
|
@@ -8902,7 +8949,7 @@ paths:
|
|
|
8902
8949
|
first_name: John
|
|
8903
8950
|
last_name: Doe
|
|
8904
8951
|
full_name: John Doe
|
|
8905
|
-
address1:
|
|
8952
|
+
address1: 321 Lovely Street
|
|
8906
8953
|
address2: Northwest
|
|
8907
8954
|
postal_code: '10118'
|
|
8908
8955
|
city: New York
|
|
@@ -8999,9 +9046,9 @@ paths:
|
|
|
8999
9046
|
example:
|
|
9000
9047
|
id: cart_UkLWZg9DAJ
|
|
9001
9048
|
market_id:
|
|
9002
|
-
number:
|
|
9003
|
-
token:
|
|
9004
|
-
email:
|
|
9049
|
+
number: R646602683
|
|
9050
|
+
token: c5RmvpB42n2ZRwYZ246jBJSFzvFgSLjsY5V
|
|
9051
|
+
email: kristle@vandervort.biz
|
|
9005
9052
|
customer_note:
|
|
9006
9053
|
currency: USD
|
|
9007
9054
|
locale: en
|
|
@@ -9043,8 +9090,8 @@ paths:
|
|
|
9043
9090
|
variant_id: variant_UkLWZg9DAJ
|
|
9044
9091
|
quantity: 1
|
|
9045
9092
|
currency: USD
|
|
9046
|
-
name: Product
|
|
9047
|
-
slug: product-
|
|
9093
|
+
name: Product 1922421
|
|
9094
|
+
slug: product-1922421
|
|
9048
9095
|
options_text: ''
|
|
9049
9096
|
price: '10.0'
|
|
9050
9097
|
display_price: "$10.00"
|
|
@@ -9069,7 +9116,7 @@ paths:
|
|
|
9069
9116
|
digital_links: []
|
|
9070
9117
|
fulfillments:
|
|
9071
9118
|
- id: ful_UkLWZg9DAJ
|
|
9072
|
-
number:
|
|
9119
|
+
number: H93482247486
|
|
9073
9120
|
tracking: U10000
|
|
9074
9121
|
tracking_url:
|
|
9075
9122
|
cost: '100.0'
|
|
@@ -9098,7 +9145,7 @@ paths:
|
|
|
9098
9145
|
stock_location:
|
|
9099
9146
|
id: sloc_UkLWZg9DAJ
|
|
9100
9147
|
state_abbr: NY
|
|
9101
|
-
name:
|
|
9148
|
+
name: Carolina Kovacek
|
|
9102
9149
|
address1: 1600 Pennsylvania Ave NW
|
|
9103
9150
|
city: Washington
|
|
9104
9151
|
zipcode: '20500'
|
|
@@ -9130,7 +9177,7 @@ paths:
|
|
|
9130
9177
|
first_name: John
|
|
9131
9178
|
last_name: Doe
|
|
9132
9179
|
full_name: John Doe
|
|
9133
|
-
address1:
|
|
9180
|
+
address1: 328 Lovely Street
|
|
9134
9181
|
address2: Northwest
|
|
9135
9182
|
postal_code: '10118'
|
|
9136
9183
|
city: New York
|
|
@@ -9149,7 +9196,7 @@ paths:
|
|
|
9149
9196
|
first_name: John
|
|
9150
9197
|
last_name: Doe
|
|
9151
9198
|
full_name: John Doe
|
|
9152
|
-
address1:
|
|
9199
|
+
address1: 329 Lovely Street
|
|
9153
9200
|
address2: Northwest
|
|
9154
9201
|
postal_code: '10118'
|
|
9155
9202
|
city: New York
|
|
@@ -9228,7 +9275,7 @@ paths:
|
|
|
9228
9275
|
data:
|
|
9229
9276
|
- id: wl_UkLWZg9DAJ
|
|
9230
9277
|
name: My Wishlist
|
|
9231
|
-
token:
|
|
9278
|
+
token: KrDYvpcWeMWWCVsEuRj9V8Xm
|
|
9232
9279
|
is_default: false
|
|
9233
9280
|
is_private: true
|
|
9234
9281
|
meta:
|
|
@@ -9304,7 +9351,7 @@ paths:
|
|
|
9304
9351
|
example:
|
|
9305
9352
|
id: wl_gbHJdmfrXB
|
|
9306
9353
|
name: Birthday Ideas
|
|
9307
|
-
token:
|
|
9354
|
+
token: LoTGXDT4V69PBMZXRWaS9Sjg
|
|
9308
9355
|
is_default: false
|
|
9309
9356
|
is_private: true
|
|
9310
9357
|
schema:
|
|
@@ -9400,7 +9447,7 @@ paths:
|
|
|
9400
9447
|
example:
|
|
9401
9448
|
id: wl_UkLWZg9DAJ
|
|
9402
9449
|
name: My Wishlist
|
|
9403
|
-
token:
|
|
9450
|
+
token: K1j4ej8u38Y4P9whWrjPs2R9
|
|
9404
9451
|
is_default: false
|
|
9405
9452
|
is_private: true
|
|
9406
9453
|
schema:
|
|
@@ -9462,7 +9509,7 @@ paths:
|
|
|
9462
9509
|
example:
|
|
9463
9510
|
id: wl_UkLWZg9DAJ
|
|
9464
9511
|
name: Updated Name
|
|
9465
|
-
token:
|
|
9512
|
+
token: xVUpUiksViqHLiWcenRTEGZx
|
|
9466
9513
|
is_default: false
|
|
9467
9514
|
is_private: true
|
|
9468
9515
|
schema:
|
|
@@ -9577,7 +9624,7 @@ paths:
|
|
|
9577
9624
|
variant:
|
|
9578
9625
|
id: variant_gbHJdmfrXB
|
|
9579
9626
|
product_id: prod_gbHJdmfrXB
|
|
9580
|
-
sku: SKU-
|
|
9627
|
+
sku: SKU-239
|
|
9581
9628
|
options_text: ''
|
|
9582
9629
|
track_inventory: true
|
|
9583
9630
|
media_count: 0
|
|
@@ -11001,6 +11048,10 @@ components:
|
|
|
11001
11048
|
type: boolean
|
|
11002
11049
|
default:
|
|
11003
11050
|
type: boolean
|
|
11051
|
+
country_isos:
|
|
11052
|
+
type: array
|
|
11053
|
+
items:
|
|
11054
|
+
type: string
|
|
11004
11055
|
supported_locales:
|
|
11005
11056
|
type: array
|
|
11006
11057
|
items:
|
|
@@ -11016,6 +11067,7 @@ components:
|
|
|
11016
11067
|
- default_locale
|
|
11017
11068
|
- tax_inclusive
|
|
11018
11069
|
- default
|
|
11070
|
+
- country_isos
|
|
11019
11071
|
- supported_locales
|
|
11020
11072
|
x-typelizer: true
|
|
11021
11073
|
Media:
|