@spree/docs 0.1.2 → 0.1.4

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.
@@ -40,7 +40,7 @@ info:
40
40
  ```
41
41
  version: v3
42
42
  paths:
43
- "/api/v3/store/customer/addresses":
43
+ "/api/v3/store/customers/me/addresses":
44
44
  get:
45
45
  summary: List customer addresses
46
46
  tags:
@@ -113,6 +113,8 @@ paths:
113
113
  state_text: STATE_ABBR_1
114
114
  state_abbr: STATE_ABBR_1
115
115
  quick_checkout: false
116
+ is_default_billing: false
117
+ is_default_shipping: false
116
118
  state_name: STATE_NAME_1
117
119
  - id: addr_gbHJdmfrXB
118
120
  first_name: John
@@ -129,6 +131,8 @@ paths:
129
131
  state_text: STATE_ABBR_3
130
132
  state_abbr: STATE_ABBR_3
131
133
  quick_checkout: false
134
+ is_default_billing: true
135
+ is_default_shipping: false
132
136
  state_name: STATE_NAME_3
133
137
  - id: addr_UkLWZg9DAJ
134
138
  first_name: John
@@ -145,6 +149,8 @@ paths:
145
149
  state_text: STATE_ABBR_2
146
150
  state_abbr: STATE_ABBR_2
147
151
  quick_checkout: false
152
+ is_default_billing: false
153
+ is_default_shipping: true
148
154
  state_name: STATE_NAME_2
149
155
  meta:
150
156
  page: 1
@@ -238,6 +244,8 @@ paths:
238
244
  state_text: STATE_ABBR_7
239
245
  state_abbr: STATE_ABBR_7
240
246
  quick_checkout: false
247
+ is_default_billing: false
248
+ is_default_shipping: false
241
249
  state_name: STATE_NAME_7
242
250
  schema:
243
251
  "$ref": "#/components/schemas/Address"
@@ -309,6 +317,14 @@ paths:
309
317
  type: string
310
318
  example: New York
311
319
  description: State name - for countries without predefined states
320
+ is_default_billing:
321
+ type: boolean
322
+ example: true
323
+ description: Set as default billing address
324
+ is_default_shipping:
325
+ type: boolean
326
+ example: true
327
+ description: Set as default shipping address
312
328
  required:
313
329
  - first_name
314
330
  - last_name
@@ -316,7 +332,7 @@ paths:
316
332
  - city
317
333
  - postal_code
318
334
  - country_iso
319
- "/api/v3/store/customer/addresses/{id}":
335
+ "/api/v3/store/customers/me/addresses/{id}":
320
336
  get:
321
337
  summary: Get an address
322
338
  tags:
@@ -382,6 +398,8 @@ paths:
382
398
  state_text: STATE_ABBR_13
383
399
  state_abbr: STATE_ABBR_13
384
400
  quick_checkout: false
401
+ is_default_billing: false
402
+ is_default_shipping: false
385
403
  state_name: STATE_NAME_13
386
404
  schema:
387
405
  "$ref": "#/components/schemas/Address"
@@ -455,6 +473,8 @@ paths:
455
473
  state_text: STATE_ABBR_19
456
474
  state_abbr: STATE_ABBR_19
457
475
  quick_checkout: false
476
+ is_default_billing: false
477
+ is_default_shipping: false
458
478
  state_name: STATE_NAME_19
459
479
  schema:
460
480
  "$ref": "#/components/schemas/Address"
@@ -476,6 +496,14 @@ paths:
476
496
  city:
477
497
  type: string
478
498
  example: Los Angeles
499
+ is_default_billing:
500
+ type: boolean
501
+ example: true
502
+ description: Set as default billing address
503
+ is_default_shipping:
504
+ type: boolean
505
+ example: true
506
+ description: Set as default shipping address
479
507
  delete:
480
508
  summary: Delete an address
481
509
  tags:
@@ -526,105 +554,6 @@ paths:
526
554
  message: Address not found
527
555
  schema:
528
556
  "$ref": "#/components/schemas/ErrorResponse"
529
- "/api/v3/store/customer/addresses/{id}/mark_as_default":
530
- patch:
531
- summary: Mark address as default
532
- tags:
533
- - Customers
534
- security:
535
- - api_key: []
536
- bearer_auth: []
537
- description: Sets the address as the default billing or shipping address for
538
- the customer
539
- x-codeSamples:
540
- - lang: javascript
541
- label: Spree SDK
542
- source: |-
543
- import { createClient } from '@spree/sdk'
544
-
545
- const client = createClient({
546
- baseUrl: 'https://your-store.com',
547
- publishableKey: '<api-key>',
548
- })
549
-
550
- const address = await client.customer.addresses.markAsDefault('addr_abc123', 'billing', {
551
- bearerToken: '<token>',
552
- })
553
- parameters:
554
- - name: x-spree-api-key
555
- in: header
556
- required: true
557
- schema:
558
- type: string
559
- - name: Authorization
560
- in: header
561
- required: true
562
- schema:
563
- type: string
564
- - name: id
565
- in: path
566
- required: true
567
- schema:
568
- type: string
569
- responses:
570
- '200':
571
- description: address marked as default
572
- content:
573
- application/json:
574
- example:
575
- id: addr_EfhxLZ9ck8
576
- first_name: John
577
- last_name: Doe
578
- full_name: John Doe
579
- address1: 30 Lovely Street
580
- address2: Northwest
581
- postal_code: '35005'
582
- city: Herndon
583
- phone: 555-555-0199
584
- company: Company
585
- country_name: NAME_10
586
- country_iso: I10
587
- state_text: STATE_ABBR_28
588
- state_abbr: STATE_ABBR_28
589
- quick_checkout: false
590
- state_name: STATE_NAME_28
591
- schema:
592
- "$ref": "#/components/schemas/Address"
593
- '422':
594
- description: invalid kind parameter
595
- content:
596
- application/json:
597
- example:
598
- error:
599
- code: invalid_request
600
- message: kind must be billing or shipping
601
- schema:
602
- "$ref": "#/components/schemas/ErrorResponse"
603
- '404':
604
- description: address not found
605
- content:
606
- application/json:
607
- example:
608
- error:
609
- code: record_not_found
610
- message: Address not found
611
- schema:
612
- "$ref": "#/components/schemas/ErrorResponse"
613
- requestBody:
614
- content:
615
- application/json:
616
- schema:
617
- type: object
618
- properties:
619
- kind:
620
- type: string
621
- enum:
622
- - billing
623
- - shipping
624
- example: billing
625
- description: 'Address kind: billing or shipping'
626
- required:
627
- - kind
628
557
  "/api/v3/store/auth/login":
629
558
  post:
630
559
  summary: Login
@@ -661,17 +590,17 @@ paths:
661
590
  content:
662
591
  application/json:
663
592
  example:
664
- token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6ImIwODI2MjgwLTE4NzItNGIwNC04N2JiLWUzZWE5MTE4ZjIzYiIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MTI2MzMwfQ.TAVS5vFhTXhIROquk-rWe4-5oarmPlWrMxs40SZIciE
665
- refresh_token: Nzo4EqcD96gGy761p8Vn8s9p
593
+ token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjVkOGQ3NjQ5LTdhYTAtNDllMC1iYmYwLTkyMjI2NDY4MjhlNiIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjU2MDgzfQ.S5PJ76kgwxWCbESeXfVcTgLsIJQ0ViZplfQtjmSHOso
594
+ refresh_token: ZtBpaDTMrGxejnzG1SFiBbuS
666
595
  user:
667
596
  id: cus_UkLWZg9DAJ
668
597
  email: test@example.com
669
- first_name: Leia
670
- last_name: Turner
598
+ first_name: Josephina
599
+ last_name: D'Amore
671
600
  phone:
672
601
  accepts_email_marketing: false
673
- created_at: '2026-03-21T19:52:10.164Z'
674
- updated_at: '2026-03-21T19:52:10.164Z'
602
+ created_at: '2026-03-23T07:54:43.096Z'
603
+ updated_at: '2026-03-23T07:54:43.096Z'
675
604
  addresses: []
676
605
  default_billing_address:
677
606
  default_shipping_address:
@@ -742,17 +671,17 @@ paths:
742
671
  content:
743
672
  application/json:
744
673
  example:
745
- token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjAwZWYzZWQwLTYyMzctNDY0NC04MWM4LWNhZDgzMmYwNGYzZiIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MTI2MzMxfQ.LKzJHZHWDgw6vdOPFZh2fgV6VgK6D7HJAjkJzrJ-nf4
746
- refresh_token: pokZBVHMMPMBxFbJYoQE8iXh
674
+ token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjIxOTQ0NDZlLTE4ODYtNDQ2ZC04MWE3LTExMGJmN2ZjM2Q3MSIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjU2MDg0fQ.zIFObWzyDdh4ET-ENcYREiTvCOOd6OnafPj9re-zTy4
675
+ refresh_token: QGHhDSsp38ysYhAKbdMwPCWd
747
676
  user:
748
677
  id: cus_UkLWZg9DAJ
749
678
  email: test@example.com
750
- first_name: Juliet
751
- last_name: McDermott
679
+ first_name: Arvilla
680
+ last_name: Carroll
752
681
  phone:
753
682
  accepts_email_marketing: false
754
- created_at: '2026-03-21T19:52:11.602Z'
755
- updated_at: '2026-03-21T19:52:11.602Z'
683
+ created_at: '2026-03-23T07:54:44.587Z'
684
+ updated_at: '2026-03-23T07:54:44.587Z'
756
685
  addresses: []
757
686
  default_billing_address:
758
687
  default_shipping_address:
@@ -779,6 +708,52 @@ paths:
779
708
  description: Refresh token from login response
780
709
  required:
781
710
  - refresh_token
711
+ "/api/v3/store/auth/logout":
712
+ post:
713
+ summary: Logout
714
+ tags:
715
+ - Authentication
716
+ security:
717
+ - api_key: []
718
+ bearer_auth: []
719
+ description: Revokes the refresh token, effectively logging the customer out.
720
+ x-codeSamples:
721
+ - lang: javascript
722
+ label: Spree SDK
723
+ source: |-
724
+ import { createClient } from '@spree/sdk'
725
+
726
+ const client = createClient({
727
+ baseUrl: 'https://your-store.com',
728
+ publishableKey: '<api-key>',
729
+ })
730
+
731
+ await client.auth.logout({
732
+ refresh_token: 'rt_xxx',
733
+ })
734
+ parameters:
735
+ - name: x-spree-api-key
736
+ in: header
737
+ required: true
738
+ schema:
739
+ type: string
740
+ - name: Authorization
741
+ in: header
742
+ required: true
743
+ schema:
744
+ type: string
745
+ responses:
746
+ '204':
747
+ description: logout without refresh token (no-op)
748
+ requestBody:
749
+ content:
750
+ application/json:
751
+ schema:
752
+ type: object
753
+ properties:
754
+ refresh_token:
755
+ type: string
756
+ description: Refresh token to revoke
782
757
  "/api/v3/store/carts":
783
758
  get:
784
759
  summary: List active carts
@@ -821,9 +796,9 @@ paths:
821
796
  example:
822
797
  data:
823
798
  - id: cart_gbHJdmfrXB
824
- number: R340108807
825
- token: QuQ8X3XsbxPFojHaPiX8rwNyk8LDhQbW9Qx
826
- email: marleen_boyle@hessellubowitz.ca
799
+ number: R114066765
800
+ token: SDcatL6GpwCvJrTv3bdSwZUE2NS9mppCg6F
801
+ email: jorge@wisoky.com
827
802
  customer_note:
828
803
  currency: USD
829
804
  locale: en
@@ -844,8 +819,8 @@ paths:
844
819
  display_total: "$110.00"
845
820
  delivery_total: '100.0'
846
821
  display_delivery_total: "$100.00"
847
- created_at: '2026-03-21T19:52:12.361Z'
848
- updated_at: '2026-03-21T19:52:12.414Z'
822
+ created_at: '2026-03-23T07:54:46.845Z'
823
+ updated_at: '2026-03-23T07:54:46.895Z'
849
824
  current_step: address
850
825
  completed_steps: []
851
826
  requirements:
@@ -859,8 +834,8 @@ paths:
859
834
  variant_id: variant_gbHJdmfrXB
860
835
  quantity: 1
861
836
  currency: USD
862
- name: Product 21969
863
- slug: product-21969
837
+ name: Product 24432
838
+ slug: product-24432
864
839
  options_text: ''
865
840
  price: '10.0'
866
841
  display_price: "$10.00"
@@ -879,21 +854,21 @@ paths:
879
854
  discounted_amount: '10.0'
880
855
  display_discounted_amount: "$10.00"
881
856
  display_compare_at_amount: "$0.00"
882
- created_at: '2026-03-21T19:52:12.393Z'
883
- updated_at: '2026-03-21T19:52:12.393Z'
857
+ created_at: '2026-03-23T07:54:46.875Z'
858
+ updated_at: '2026-03-23T07:54:46.875Z'
884
859
  compare_at_amount:
885
860
  thumbnail_url:
886
861
  option_values: []
887
862
  digital_links: []
888
863
  fulfillments:
889
864
  - id: ful_gbHJdmfrXB
890
- number: H86195099160
865
+ number: H71755744433
891
866
  tracking: U10000
892
867
  tracking_url:
893
868
  cost: '100.0'
894
869
  display_cost: "$100.00"
895
- created_at: '2026-03-21T19:52:12.400Z'
896
- updated_at: '2026-03-21T19:52:12.412Z'
870
+ created_at: '2026-03-23T07:54:46.882Z'
871
+ updated_at: '2026-03-23T07:54:46.892Z'
897
872
  status: pending
898
873
  fulfillment_type: shipping
899
874
  fulfilled_at:
@@ -907,14 +882,14 @@ paths:
907
882
  code: UPS_GROUND
908
883
  stock_location:
909
884
  id: sloc_UkLWZg9DAJ
910
- state_abbr: STATE_ABBR_37
911
- name: Alona Gerhold
885
+ state_abbr: STATE_ABBR_32
886
+ name: Chantell Hamill
912
887
  address1: 1600 Pennsylvania Ave NW
913
888
  city: Washington
914
889
  zipcode: '20500'
915
890
  country_iso: US
916
891
  country_name: United States of America
917
- state_text: STATE_ABBR_37
892
+ state_text: STATE_ABBR_32
918
893
  delivery_rates:
919
894
  - id: dr_gbHJdmfrXB
920
895
  delivery_method_id: dm_gbHJdmfrXB
@@ -932,7 +907,7 @@ paths:
932
907
  first_name: John
933
908
  last_name: Doe
934
909
  full_name: John Doe
935
- address1: 41 Lovely Street
910
+ address1: 36 Lovely Street
936
911
  address2: Northwest
937
912
  postal_code: '35005'
938
913
  city: Herndon
@@ -940,16 +915,18 @@ paths:
940
915
  company: Company
941
916
  country_name: United States of America
942
917
  country_iso: US
943
- state_text: STATE_ABBR_41
944
- state_abbr: STATE_ABBR_41
918
+ state_text: STATE_ABBR_36
919
+ state_abbr: STATE_ABBR_36
945
920
  quick_checkout: false
946
- state_name: STATE_NAME_41
921
+ is_default_billing: false
922
+ is_default_shipping: false
923
+ state_name: STATE_NAME_36
947
924
  shipping_address:
948
925
  id: addr_OIJLhNcSbf
949
926
  first_name: John
950
927
  last_name: Doe
951
928
  full_name: John Doe
952
- address1: 42 Lovely Street
929
+ address1: 37 Lovely Street
953
930
  address2: Northwest
954
931
  postal_code: '35005'
955
932
  city: Herndon
@@ -957,15 +934,17 @@ paths:
957
934
  company: Company
958
935
  country_name: United States of America
959
936
  country_iso: US
960
- state_text: STATE_ABBR_42
961
- state_abbr: STATE_ABBR_42
937
+ state_text: STATE_ABBR_37
938
+ state_abbr: STATE_ABBR_37
962
939
  quick_checkout: false
963
- state_name: STATE_NAME_42
940
+ is_default_billing: false
941
+ is_default_shipping: false
942
+ state_name: STATE_NAME_37
964
943
  payment_methods: []
965
944
  - id: cart_UkLWZg9DAJ
966
- number: R831882320
967
- token: 3BNecgJLZ7FbdBBfrpDySrRRewPtZ6YGCBJ
968
- email: marleen_boyle@hessellubowitz.ca
945
+ number: R188381154
946
+ token: Sj6RDaWE7PFvmrd2XMP4Sk3Gzk6chM4wDY3
947
+ email: jorge@wisoky.com
969
948
  customer_note:
970
949
  currency: USD
971
950
  locale: en
@@ -986,8 +965,8 @@ paths:
986
965
  display_total: "$110.00"
987
966
  delivery_total: '100.0'
988
967
  display_delivery_total: "$100.00"
989
- created_at: '2026-03-21T19:52:12.200Z'
990
- updated_at: '2026-03-21T19:52:12.355Z'
968
+ created_at: '2026-03-23T07:54:46.686Z'
969
+ updated_at: '2026-03-23T07:54:46.839Z'
991
970
  current_step: address
992
971
  completed_steps: []
993
972
  requirements:
@@ -1001,8 +980,8 @@ paths:
1001
980
  variant_id: variant_UkLWZg9DAJ
1002
981
  quantity: 1
1003
982
  currency: USD
1004
- name: Product 14821
1005
- slug: product-14821
983
+ name: Product 17692
984
+ slug: product-17692
1006
985
  options_text: ''
1007
986
  price: '10.0'
1008
987
  display_price: "$10.00"
@@ -1021,21 +1000,21 @@ paths:
1021
1000
  discounted_amount: '10.0'
1022
1001
  display_discounted_amount: "$10.00"
1023
1002
  display_compare_at_amount: "$0.00"
1024
- created_at: '2026-03-21T19:52:12.282Z'
1025
- updated_at: '2026-03-21T19:52:12.282Z'
1003
+ created_at: '2026-03-23T07:54:46.764Z'
1004
+ updated_at: '2026-03-23T07:54:46.764Z'
1026
1005
  compare_at_amount:
1027
1006
  thumbnail_url:
1028
1007
  option_values: []
1029
1008
  digital_links: []
1030
1009
  fulfillments:
1031
1010
  - id: ful_UkLWZg9DAJ
1032
- number: H54187612043
1011
+ number: H16073350442
1033
1012
  tracking: U10000
1034
1013
  tracking_url:
1035
1014
  cost: '100.0'
1036
1015
  display_cost: "$100.00"
1037
- created_at: '2026-03-21T19:52:12.295Z'
1038
- updated_at: '2026-03-21T19:52:12.350Z'
1016
+ created_at: '2026-03-23T07:54:46.778Z'
1017
+ updated_at: '2026-03-23T07:54:46.835Z'
1039
1018
  status: pending
1040
1019
  fulfillment_type: shipping
1041
1020
  fulfilled_at:
@@ -1049,14 +1028,14 @@ paths:
1049
1028
  code: UPS_GROUND
1050
1029
  stock_location:
1051
1030
  id: sloc_UkLWZg9DAJ
1052
- state_abbr: STATE_ABBR_37
1053
- name: Alona Gerhold
1031
+ state_abbr: STATE_ABBR_32
1032
+ name: Chantell Hamill
1054
1033
  address1: 1600 Pennsylvania Ave NW
1055
1034
  city: Washington
1056
1035
  zipcode: '20500'
1057
1036
  country_iso: US
1058
1037
  country_name: United States of America
1059
- state_text: STATE_ABBR_37
1038
+ state_text: STATE_ABBR_32
1060
1039
  delivery_rates:
1061
1040
  - id: dr_UkLWZg9DAJ
1062
1041
  delivery_method_id: dm_UkLWZg9DAJ
@@ -1074,7 +1053,7 @@ paths:
1074
1053
  first_name: John
1075
1054
  last_name: Doe
1076
1055
  full_name: John Doe
1077
- address1: 39 Lovely Street
1056
+ address1: 34 Lovely Street
1078
1057
  address2: Northwest
1079
1058
  postal_code: '35005'
1080
1059
  city: Herndon
@@ -1082,16 +1061,18 @@ paths:
1082
1061
  company: Company
1083
1062
  country_name: United States of America
1084
1063
  country_iso: US
1085
- state_text: STATE_ABBR_39
1086
- state_abbr: STATE_ABBR_39
1064
+ state_text: STATE_ABBR_34
1065
+ state_abbr: STATE_ABBR_34
1087
1066
  quick_checkout: false
1088
- state_name: STATE_NAME_39
1067
+ is_default_billing: false
1068
+ is_default_shipping: false
1069
+ state_name: STATE_NAME_34
1089
1070
  shipping_address:
1090
1071
  id: addr_VqXmZF31wY
1091
1072
  first_name: John
1092
1073
  last_name: Doe
1093
1074
  full_name: John Doe
1094
- address1: 40 Lovely Street
1075
+ address1: 35 Lovely Street
1095
1076
  address2: Northwest
1096
1077
  postal_code: '35005'
1097
1078
  city: Herndon
@@ -1099,10 +1080,12 @@ paths:
1099
1080
  company: Company
1100
1081
  country_name: United States of America
1101
1082
  country_iso: US
1102
- state_text: STATE_ABBR_40
1103
- state_abbr: STATE_ABBR_40
1083
+ state_text: STATE_ABBR_35
1084
+ state_abbr: STATE_ABBR_35
1104
1085
  quick_checkout: false
1105
- state_name: STATE_NAME_40
1086
+ is_default_billing: false
1087
+ is_default_shipping: false
1088
+ state_name: STATE_NAME_35
1106
1089
  payment_methods: []
1107
1090
  meta:
1108
1091
  page: 1
@@ -1178,8 +1161,8 @@ paths:
1178
1161
  application/json:
1179
1162
  example:
1180
1163
  id: cart_UkLWZg9DAJ
1181
- number: R205616118
1182
- token: B7qC2wPnNc7jyJtauaJyfxw189gKxV8jB3V
1164
+ number: R434559223
1165
+ token: yjzjHZpoJZLfcvSaoWwcXgaQWLw9raNRmTm
1183
1166
  email:
1184
1167
  customer_note:
1185
1168
  currency: USD
@@ -1201,8 +1184,8 @@ paths:
1201
1184
  display_total: "$0.00"
1202
1185
  delivery_total: '0.0'
1203
1186
  display_delivery_total: "$0.00"
1204
- created_at: '2026-03-21T19:52:12.926Z'
1205
- updated_at: '2026-03-21T19:52:12.926Z'
1187
+ created_at: '2026-03-23T07:54:47.392Z'
1188
+ updated_at: '2026-03-23T07:54:47.392Z'
1206
1189
  current_step: address
1207
1190
  completed_steps: []
1208
1191
  requirements:
@@ -1310,9 +1293,9 @@ paths:
1310
1293
  application/json:
1311
1294
  example:
1312
1295
  id: cart_UkLWZg9DAJ
1313
- number: R535907560
1314
- token: RMNEHt2RztwJNpkeexWFeJadqMyvY2q7uiV
1315
- email: shari_pfannerstill@walter.info
1296
+ number: R361822387
1297
+ token: BPCDVqzhdM6y1gmX6wFKVF43ZvTfwcpoVyK
1298
+ email: rosalia@dooley.ca
1316
1299
  customer_note:
1317
1300
  currency: USD
1318
1301
  locale: en
@@ -1333,8 +1316,8 @@ paths:
1333
1316
  display_total: "$110.00"
1334
1317
  delivery_total: '100.0'
1335
1318
  display_delivery_total: "$100.00"
1336
- created_at: '2026-03-21T19:52:13.215Z'
1337
- updated_at: '2026-03-21T19:52:13.283Z'
1319
+ created_at: '2026-03-23T07:54:47.676Z'
1320
+ updated_at: '2026-03-23T07:54:47.745Z'
1338
1321
  current_step: address
1339
1322
  completed_steps: []
1340
1323
  requirements:
@@ -1348,8 +1331,8 @@ paths:
1348
1331
  variant_id: variant_UkLWZg9DAJ
1349
1332
  quantity: 1
1350
1333
  currency: USD
1351
- name: Product 5163
1352
- slug: product-5163
1334
+ name: Product 53056
1335
+ slug: product-53056
1353
1336
  options_text: ''
1354
1337
  price: '10.0'
1355
1338
  display_price: "$10.00"
@@ -1368,21 +1351,21 @@ paths:
1368
1351
  discounted_amount: '10.0'
1369
1352
  display_discounted_amount: "$10.00"
1370
1353
  display_compare_at_amount: "$0.00"
1371
- created_at: '2026-03-21T19:52:13.257Z'
1372
- updated_at: '2026-03-21T19:52:13.257Z'
1354
+ created_at: '2026-03-23T07:54:47.716Z'
1355
+ updated_at: '2026-03-23T07:54:47.716Z'
1373
1356
  compare_at_amount:
1374
1357
  thumbnail_url:
1375
1358
  option_values: []
1376
1359
  digital_links: []
1377
1360
  fulfillments:
1378
1361
  - id: ful_UkLWZg9DAJ
1379
- number: H41000832267
1362
+ number: H51321009697
1380
1363
  tracking: U10000
1381
1364
  tracking_url:
1382
1365
  cost: '100.0'
1383
1366
  display_cost: "$100.00"
1384
- created_at: '2026-03-21T19:52:13.263Z'
1385
- updated_at: '2026-03-21T19:52:13.281Z'
1367
+ created_at: '2026-03-23T07:54:47.722Z'
1368
+ updated_at: '2026-03-23T07:54:47.742Z'
1386
1369
  status: pending
1387
1370
  fulfillment_type: shipping
1388
1371
  fulfilled_at:
@@ -1396,14 +1379,14 @@ paths:
1396
1379
  code: UPS_GROUND
1397
1380
  stock_location:
1398
1381
  id: sloc_UkLWZg9DAJ
1399
- state_abbr: STATE_ABBR_47
1400
- name: Talitha Harvey
1382
+ state_abbr: STATE_ABBR_42
1383
+ name: Lavon Ebert
1401
1384
  address1: 1600 Pennsylvania Ave NW
1402
1385
  city: Washington
1403
1386
  zipcode: '20500'
1404
1387
  country_iso: US
1405
1388
  country_name: United States of America
1406
- state_text: STATE_ABBR_47
1389
+ state_text: STATE_ABBR_42
1407
1390
  delivery_rates:
1408
1391
  - id: dr_UkLWZg9DAJ
1409
1392
  delivery_method_id: dm_UkLWZg9DAJ
@@ -1421,7 +1404,7 @@ paths:
1421
1404
  first_name: John
1422
1405
  last_name: Doe
1423
1406
  full_name: John Doe
1424
- address1: 47 Lovely Street
1407
+ address1: 42 Lovely Street
1425
1408
  address2: Northwest
1426
1409
  postal_code: '35005'
1427
1410
  city: Herndon
@@ -1429,16 +1412,18 @@ paths:
1429
1412
  company: Company
1430
1413
  country_name: United States of America
1431
1414
  country_iso: US
1432
- state_text: STATE_ABBR_47
1433
- state_abbr: STATE_ABBR_47
1415
+ state_text: STATE_ABBR_42
1416
+ state_abbr: STATE_ABBR_42
1434
1417
  quick_checkout: false
1435
- state_name: STATE_NAME_47
1418
+ is_default_billing: false
1419
+ is_default_shipping: false
1420
+ state_name: STATE_NAME_42
1436
1421
  shipping_address:
1437
1422
  id: addr_gbHJdmfrXB
1438
1423
  first_name: John
1439
1424
  last_name: Doe
1440
1425
  full_name: John Doe
1441
- address1: 48 Lovely Street
1426
+ address1: 43 Lovely Street
1442
1427
  address2: Northwest
1443
1428
  postal_code: '35005'
1444
1429
  city: Herndon
@@ -1446,10 +1431,12 @@ paths:
1446
1431
  company: Company
1447
1432
  country_name: United States of America
1448
1433
  country_iso: US
1449
- state_text: STATE_ABBR_48
1450
- state_abbr: STATE_ABBR_48
1434
+ state_text: STATE_ABBR_43
1435
+ state_abbr: STATE_ABBR_43
1451
1436
  quick_checkout: false
1452
- state_name: STATE_NAME_48
1437
+ is_default_billing: false
1438
+ is_default_shipping: false
1439
+ state_name: STATE_NAME_43
1453
1440
  payment_methods: []
1454
1441
  schema:
1455
1442
  "$ref": "#/components/schemas/Cart"
@@ -1531,9 +1518,9 @@ paths:
1531
1518
  application/json:
1532
1519
  example:
1533
1520
  id: cart_UkLWZg9DAJ
1534
- number: R579641912
1535
- token: QB1VSx6ghJopdHZFvEg3omfQg8iE3MZRrxG
1536
- email: kelley_stehr@luettgen.name
1521
+ number: R545718829
1522
+ token: RyAB3Xuf8CGmHDTtbJuLXHBMUi92eWm13Ds
1523
+ email: thomasena.towne@dickens.biz
1537
1524
  customer_note: Leave at door
1538
1525
  currency: USD
1539
1526
  locale: en
@@ -1554,8 +1541,8 @@ paths:
1554
1541
  display_total: "$29.99"
1555
1542
  delivery_total: '10.0'
1556
1543
  display_delivery_total: "$10.00"
1557
- created_at: '2026-03-21T19:52:13.911Z'
1558
- updated_at: '2026-03-21T19:52:14.102Z'
1544
+ created_at: '2026-03-23T07:54:48.336Z'
1545
+ updated_at: '2026-03-23T07:54:48.470Z'
1559
1546
  current_step: payment
1560
1547
  completed_steps:
1561
1548
  - address
@@ -1571,8 +1558,8 @@ paths:
1571
1558
  variant_id: variant_UkLWZg9DAJ
1572
1559
  quantity: 1
1573
1560
  currency: USD
1574
- name: Product 69725
1575
- slug: product-69725
1561
+ name: Product 61723
1562
+ slug: product-61723
1576
1563
  options_text: ''
1577
1564
  price: '19.99'
1578
1565
  display_price: "$19.99"
@@ -1591,21 +1578,21 @@ paths:
1591
1578
  discounted_amount: '19.99'
1592
1579
  display_discounted_amount: "$19.99"
1593
1580
  display_compare_at_amount: "$0.00"
1594
- created_at: '2026-03-21T19:52:13.950Z'
1595
- updated_at: '2026-03-21T19:52:14.046Z'
1581
+ created_at: '2026-03-23T07:54:48.366Z'
1582
+ updated_at: '2026-03-23T07:54:48.423Z'
1596
1583
  compare_at_amount:
1597
1584
  thumbnail_url:
1598
1585
  option_values: []
1599
1586
  digital_links: []
1600
1587
  fulfillments:
1601
1588
  - id: ful_gbHJdmfrXB
1602
- number: H34858185053
1589
+ number: H34471054639
1603
1590
  tracking:
1604
1591
  tracking_url:
1605
1592
  cost: '10.0'
1606
1593
  display_cost: "$10.00"
1607
- created_at: '2026-03-21T19:52:14.066Z'
1608
- updated_at: '2026-03-21T19:52:14.081Z'
1594
+ created_at: '2026-03-23T07:54:48.440Z'
1595
+ updated_at: '2026-03-23T07:54:48.455Z'
1609
1596
  status: pending
1610
1597
  fulfillment_type: shipping
1611
1598
  fulfilled_at:
@@ -1619,14 +1606,14 @@ paths:
1619
1606
  code: UPS_GROUND
1620
1607
  stock_location:
1621
1608
  id: sloc_UkLWZg9DAJ
1622
- state_abbr: STATE_ABBR_49
1623
- name: Hester Macejkovic
1609
+ state_abbr: STATE_ABBR_44
1610
+ name: Emmanuel Hansen
1624
1611
  address1: 1600 Pennsylvania Ave NW
1625
1612
  city: Washington
1626
1613
  zipcode: '20500'
1627
1614
  country_iso: US
1628
1615
  country_name: United States of America
1629
- state_text: STATE_ABBR_49
1616
+ state_text: STATE_ABBR_44
1630
1617
  delivery_rates:
1631
1618
  - id: dr_gbHJdmfrXB
1632
1619
  delivery_method_id: dm_UkLWZg9DAJ
@@ -1644,7 +1631,7 @@ paths:
1644
1631
  first_name: John
1645
1632
  last_name: Doe
1646
1633
  full_name: John Doe
1647
- address1: 51 Lovely Street
1634
+ address1: 46 Lovely Street
1648
1635
  address2: Northwest
1649
1636
  postal_code: '35005'
1650
1637
  city: Herndon
@@ -1652,16 +1639,18 @@ paths:
1652
1639
  company: Company
1653
1640
  country_name: United States of America
1654
1641
  country_iso: US
1655
- state_text: STATE_ABBR_51
1656
- state_abbr: STATE_ABBR_51
1642
+ state_text: STATE_ABBR_46
1643
+ state_abbr: STATE_ABBR_46
1657
1644
  quick_checkout: false
1658
- state_name: STATE_NAME_51
1645
+ is_default_billing: false
1646
+ is_default_shipping: false
1647
+ state_name: STATE_NAME_46
1659
1648
  shipping_address:
1660
1649
  id: addr_VqXmZF31wY
1661
1650
  first_name: John
1662
1651
  last_name: Doe
1663
1652
  full_name: John Doe
1664
- address1: 52 Lovely Street
1653
+ address1: 47 Lovely Street
1665
1654
  address2: Northwest
1666
1655
  postal_code: '35005'
1667
1656
  city: Herndon
@@ -1669,10 +1658,12 @@ paths:
1669
1658
  company: Company
1670
1659
  country_name: United States of America
1671
1660
  country_iso: US
1672
- state_text: STATE_ABBR_52
1673
- state_abbr: STATE_ABBR_52
1661
+ state_text: STATE_ABBR_47
1662
+ state_abbr: STATE_ABBR_47
1674
1663
  quick_checkout: false
1675
- state_name: STATE_NAME_52
1664
+ is_default_billing: false
1665
+ is_default_shipping: false
1666
+ state_name: STATE_NAME_47
1676
1667
  payment_methods: []
1677
1668
  schema:
1678
1669
  "$ref": "#/components/schemas/Cart"
@@ -1842,9 +1833,9 @@ paths:
1842
1833
  application/json:
1843
1834
  example:
1844
1835
  id: cart_UkLWZg9DAJ
1845
- number: R820991004
1846
- token: 5k4UnRuovfYUmyz5jB2iopBFKa6UzAhqiCB
1847
- email: georgiann@oconnellpowlowski.ca
1836
+ number: R743483033
1837
+ token: 58WPfsbmnN7n75vzPfBHBtWUN9eWVpJg7sF
1838
+ email: gary.lesch@waters.com
1848
1839
  customer_note:
1849
1840
  currency: USD
1850
1841
  locale: en
@@ -1865,8 +1856,8 @@ paths:
1865
1856
  display_total: "$110.00"
1866
1857
  delivery_total: '100.0'
1867
1858
  display_delivery_total: "$100.00"
1868
- created_at: '2026-03-21T19:52:14.853Z'
1869
- updated_at: '2026-03-21T19:52:14.946Z'
1859
+ created_at: '2026-03-23T07:54:49.145Z'
1860
+ updated_at: '2026-03-23T07:54:49.203Z'
1870
1861
  current_step: address
1871
1862
  completed_steps: []
1872
1863
  requirements:
@@ -1880,8 +1871,8 @@ paths:
1880
1871
  variant_id: variant_UkLWZg9DAJ
1881
1872
  quantity: 1
1882
1873
  currency: USD
1883
- name: Product 89424
1884
- slug: product-89424
1874
+ name: Product 87429
1875
+ slug: product-87429
1885
1876
  options_text: ''
1886
1877
  price: '10.0'
1887
1878
  display_price: "$10.00"
@@ -1900,21 +1891,21 @@ paths:
1900
1891
  discounted_amount: '10.0'
1901
1892
  display_discounted_amount: "$10.00"
1902
1893
  display_compare_at_amount: "$0.00"
1903
- created_at: '2026-03-21T19:52:14.907Z'
1904
- updated_at: '2026-03-21T19:52:14.907Z'
1894
+ created_at: '2026-03-23T07:54:49.176Z'
1895
+ updated_at: '2026-03-23T07:54:49.176Z'
1905
1896
  compare_at_amount:
1906
1897
  thumbnail_url:
1907
1898
  option_values: []
1908
1899
  digital_links: []
1909
1900
  fulfillments:
1910
1901
  - id: ful_UkLWZg9DAJ
1911
- number: H20870752480
1902
+ number: H81954662688
1912
1903
  tracking: U10000
1913
1904
  tracking_url:
1914
1905
  cost: '100.0'
1915
1906
  display_cost: "$100.00"
1916
- created_at: '2026-03-21T19:52:14.917Z'
1917
- updated_at: '2026-03-21T19:52:14.943Z'
1907
+ created_at: '2026-03-23T07:54:49.182Z'
1908
+ updated_at: '2026-03-23T07:54:49.198Z'
1918
1909
  status: pending
1919
1910
  fulfillment_type: shipping
1920
1911
  fulfilled_at:
@@ -1928,14 +1919,14 @@ paths:
1928
1919
  code: UPS_GROUND
1929
1920
  stock_location:
1930
1921
  id: sloc_UkLWZg9DAJ
1931
- state_abbr: STATE_ABBR_57
1932
- name: Noah Eichmann
1922
+ state_abbr: STATE_ABBR_52
1923
+ name: Calvin Abshire
1933
1924
  address1: 1600 Pennsylvania Ave NW
1934
1925
  city: Washington
1935
1926
  zipcode: '20500'
1936
1927
  country_iso: US
1937
1928
  country_name: United States of America
1938
- state_text: STATE_ABBR_57
1929
+ state_text: STATE_ABBR_52
1939
1930
  delivery_rates:
1940
1931
  - id: dr_UkLWZg9DAJ
1941
1932
  delivery_method_id: dm_UkLWZg9DAJ
@@ -1953,7 +1944,7 @@ paths:
1953
1944
  first_name: John
1954
1945
  last_name: Doe
1955
1946
  full_name: John Doe
1956
- address1: 57 Lovely Street
1947
+ address1: 52 Lovely Street
1957
1948
  address2: Northwest
1958
1949
  postal_code: '35005'
1959
1950
  city: Herndon
@@ -1961,16 +1952,18 @@ paths:
1961
1952
  company: Company
1962
1953
  country_name: United States of America
1963
1954
  country_iso: US
1964
- state_text: STATE_ABBR_57
1965
- state_abbr: STATE_ABBR_57
1955
+ state_text: STATE_ABBR_52
1956
+ state_abbr: STATE_ABBR_52
1966
1957
  quick_checkout: false
1967
- state_name: STATE_NAME_57
1958
+ is_default_billing: false
1959
+ is_default_shipping: false
1960
+ state_name: STATE_NAME_52
1968
1961
  shipping_address:
1969
1962
  id: addr_gbHJdmfrXB
1970
1963
  first_name: John
1971
1964
  last_name: Doe
1972
1965
  full_name: John Doe
1973
- address1: 58 Lovely Street
1966
+ address1: 53 Lovely Street
1974
1967
  address2: Northwest
1975
1968
  postal_code: '35005'
1976
1969
  city: Herndon
@@ -1978,10 +1971,12 @@ paths:
1978
1971
  company: Company
1979
1972
  country_name: United States of America
1980
1973
  country_iso: US
1981
- state_text: STATE_ABBR_58
1982
- state_abbr: STATE_ABBR_58
1974
+ state_text: STATE_ABBR_53
1975
+ state_abbr: STATE_ABBR_53
1983
1976
  quick_checkout: false
1984
- state_name: STATE_NAME_58
1977
+ is_default_billing: false
1978
+ is_default_shipping: false
1979
+ state_name: STATE_NAME_53
1985
1980
  payment_methods: []
1986
1981
  schema:
1987
1982
  "$ref": "#/components/schemas/Cart"
@@ -2048,8 +2043,8 @@ paths:
2048
2043
  application/json:
2049
2044
  example:
2050
2045
  id: or_UkLWZg9DAJ
2051
- number: R367884728
2052
- email: lawanda.lindgren@blanda.us
2046
+ number: R603783969
2047
+ email: jacinto@eichmann.co.uk
2053
2048
  customer_note:
2054
2049
  currency: USD
2055
2050
  locale: en
@@ -2072,17 +2067,17 @@ paths:
2072
2067
  display_delivery_total: "$10.00"
2073
2068
  fulfillment_status: backorder
2074
2069
  payment_status: paid
2075
- completed_at: '2026-03-21T19:52:16.430Z'
2076
- created_at: '2026-03-21T19:52:16.211Z'
2077
- updated_at: '2026-03-21T19:52:16.430Z'
2070
+ completed_at: '2026-03-23T07:54:50.666Z'
2071
+ created_at: '2026-03-23T07:54:50.436Z'
2072
+ updated_at: '2026-03-23T07:54:50.666Z'
2078
2073
  discounts: []
2079
2074
  items:
2080
2075
  - id: li_UkLWZg9DAJ
2081
2076
  variant_id: variant_UkLWZg9DAJ
2082
2077
  quantity: 1
2083
2078
  currency: USD
2084
- name: Product 109979
2085
- slug: product-109979
2079
+ name: Product 102735
2080
+ slug: product-102735
2086
2081
  options_text: ''
2087
2082
  price: '19.99'
2088
2083
  display_price: "$19.99"
@@ -2101,21 +2096,21 @@ paths:
2101
2096
  discounted_amount: '19.99'
2102
2097
  display_discounted_amount: "$19.99"
2103
2098
  display_compare_at_amount: "$0.00"
2104
- created_at: '2026-03-21T19:52:16.242Z'
2105
- updated_at: '2026-03-21T19:52:16.434Z'
2099
+ created_at: '2026-03-23T07:54:50.467Z'
2100
+ updated_at: '2026-03-23T07:54:50.669Z'
2106
2101
  compare_at_amount:
2107
2102
  thumbnail_url:
2108
2103
  option_values: []
2109
2104
  digital_links: []
2110
2105
  fulfillments:
2111
2106
  - id: ful_gbHJdmfrXB
2112
- number: H03795798085
2107
+ number: H60905879469
2113
2108
  tracking:
2114
2109
  tracking_url:
2115
2110
  cost: '10.0'
2116
2111
  display_cost: "$10.00"
2117
- created_at: '2026-03-21T19:52:16.309Z'
2118
- updated_at: '2026-03-21T19:52:16.423Z'
2112
+ created_at: '2026-03-23T07:54:50.537Z'
2113
+ updated_at: '2026-03-23T07:54:50.659Z'
2119
2114
  status: pending
2120
2115
  fulfillment_type: shipping
2121
2116
  fulfilled_at:
@@ -2129,14 +2124,14 @@ paths:
2129
2124
  code: UPS_GROUND
2130
2125
  stock_location:
2131
2126
  id: sloc_UkLWZg9DAJ
2132
- state_abbr: STATE_ABBR_63
2133
- name: Dick Brekke
2127
+ state_abbr: STATE_ABBR_58
2128
+ name: Linnie Dietrich
2134
2129
  address1: 1600 Pennsylvania Ave NW
2135
2130
  city: Washington
2136
2131
  zipcode: '20500'
2137
2132
  country_iso: US
2138
2133
  country_name: United States of America
2139
- state_text: STATE_ABBR_63
2134
+ state_text: STATE_ABBR_58
2140
2135
  delivery_rates:
2141
2136
  - id: dr_gbHJdmfrXB
2142
2137
  delivery_method_id: dm_UkLWZg9DAJ
@@ -2152,11 +2147,11 @@ paths:
2152
2147
  - id: py_UkLWZg9DAJ
2153
2148
  payment_method_id: pm_UkLWZg9DAJ
2154
2149
  response_code: '12345'
2155
- number: P0RLRCDY
2150
+ number: PBKZPCYO
2156
2151
  amount: '29.99'
2157
2152
  display_amount: "$29.99"
2158
- created_at: '2026-03-21T19:52:16.384Z'
2159
- updated_at: '2026-03-21T19:52:16.407Z'
2153
+ created_at: '2026-03-23T07:54:50.609Z'
2154
+ updated_at: '2026-03-23T07:54:50.640Z'
2160
2155
  status: completed
2161
2156
  source_type: credit_card
2162
2157
  source_id: card_UkLWZg9DAJ
@@ -2180,7 +2175,7 @@ paths:
2180
2175
  first_name: John
2181
2176
  last_name: Doe
2182
2177
  full_name: John Doe
2183
- address1: 65 Lovely Street
2178
+ address1: 60 Lovely Street
2184
2179
  address2: Northwest
2185
2180
  postal_code: '35005'
2186
2181
  city: Herndon
@@ -2188,16 +2183,18 @@ paths:
2188
2183
  company: Company
2189
2184
  country_name: United States of America
2190
2185
  country_iso: US
2191
- state_text: STATE_ABBR_65
2192
- state_abbr: STATE_ABBR_65
2186
+ state_text: STATE_ABBR_60
2187
+ state_abbr: STATE_ABBR_60
2193
2188
  quick_checkout: false
2194
- state_name: STATE_NAME_65
2189
+ is_default_billing: false
2190
+ is_default_shipping: false
2191
+ state_name: STATE_NAME_60
2195
2192
  shipping_address:
2196
2193
  id: addr_VqXmZF31wY
2197
2194
  first_name: John
2198
2195
  last_name: Doe
2199
2196
  full_name: John Doe
2200
- address1: 66 Lovely Street
2197
+ address1: 61 Lovely Street
2201
2198
  address2: Northwest
2202
2199
  postal_code: '35005'
2203
2200
  city: Herndon
@@ -2205,10 +2202,12 @@ paths:
2205
2202
  company: Company
2206
2203
  country_name: United States of America
2207
2204
  country_iso: US
2208
- state_text: STATE_ABBR_66
2209
- state_abbr: STATE_ABBR_66
2205
+ state_text: STATE_ABBR_61
2206
+ state_abbr: STATE_ABBR_61
2210
2207
  quick_checkout: false
2211
- state_name: STATE_NAME_66
2208
+ is_default_billing: false
2209
+ is_default_shipping: false
2210
+ state_name: STATE_NAME_61
2212
2211
  schema:
2213
2212
  "$ref": "#/components/schemas/Order"
2214
2213
  '422':
@@ -2289,8 +2288,8 @@ paths:
2289
2288
  meta_description:
2290
2289
  meta_keywords:
2291
2290
  children_count: 1
2292
- created_at: '2026-03-21T19:52:17.110Z'
2293
- updated_at: '2026-03-21T19:52:17.166Z'
2291
+ created_at: '2026-03-23T07:54:51.321Z'
2292
+ updated_at: '2026-03-23T07:54:51.377Z'
2294
2293
  parent_id:
2295
2294
  description: ''
2296
2295
  description_html: ''
@@ -2308,8 +2307,8 @@ paths:
2308
2307
  meta_description:
2309
2308
  meta_keywords:
2310
2309
  children_count: 1
2311
- created_at: '2026-03-21T19:52:17.119Z'
2312
- updated_at: '2026-03-21T19:52:17.165Z'
2310
+ created_at: '2026-03-23T07:54:51.329Z'
2311
+ updated_at: '2026-03-23T07:54:51.377Z'
2313
2312
  parent_id: ctg_UkLWZg9DAJ
2314
2313
  description: ''
2315
2314
  description_html: ''
@@ -2327,8 +2326,8 @@ paths:
2327
2326
  meta_description:
2328
2327
  meta_keywords:
2329
2328
  children_count: 0
2330
- created_at: '2026-03-21T19:52:17.131Z'
2331
- updated_at: '2026-03-21T19:52:17.137Z'
2329
+ created_at: '2026-03-23T07:54:51.337Z'
2330
+ updated_at: '2026-03-23T07:54:51.342Z'
2332
2331
  parent_id: ctg_gbHJdmfrXB
2333
2332
  description: ''
2334
2333
  description_html: ''
@@ -2429,8 +2428,8 @@ paths:
2429
2428
  meta_description:
2430
2429
  meta_keywords:
2431
2430
  children_count: 1
2432
- created_at: '2026-03-21T19:52:17.525Z'
2433
- updated_at: '2026-03-21T19:52:17.568Z'
2431
+ created_at: '2026-03-23T07:54:51.708Z'
2432
+ updated_at: '2026-03-23T07:54:51.748Z'
2434
2433
  parent_id: ctg_UkLWZg9DAJ
2435
2434
  description: ''
2436
2435
  description_html: ''
@@ -2557,30 +2556,29 @@ paths:
2557
2556
  example:
2558
2557
  data:
2559
2558
  - id: prod_UkLWZg9DAJ
2560
- name: Product 197180
2561
- slug: product-197180
2559
+ name: Product 198042
2560
+ slug: product-198042
2562
2561
  meta_description:
2563
2562
  meta_keywords:
2564
2563
  variant_count: 0
2565
- available_on: '2025-03-21T19:52:18.054Z'
2566
- created_at: '2026-03-21T19:52:18.068Z'
2567
- updated_at: '2026-03-21T19:52:18.081Z'
2564
+ available_on: '2025-03-23T07:54:52.220Z'
2565
+ created_at: '2026-03-23T07:54:52.235Z'
2566
+ updated_at: '2026-03-23T07:54:52.251Z'
2568
2567
  purchasable: true
2569
2568
  in_stock: false
2570
2569
  backorderable: true
2571
2570
  available: true
2572
- description: |-
2573
- Sunt commodi accusamus fuga dolorum facere eveniet. Explicabo dolorem velit quo aperiam repudiandae alias. Laudantium illum rem fugiat nulla quam officiis dicta. Iure odio maiores sunt dolor placeat numquam.
2574
- Vitae autem itaque amet recusandae voluptas corporis at quod. Eius dolor a recusandae corrupti provident qui ratione saepe. Veniam fugit nisi repudiandae consequuntur. Adipisci rerum rem aspernatur repudiandae possimus aliquam inventore. Aperiam laborum repudiandae illum dolorum accusamus facere.
2575
- Numquam saepe animi facilis deleniti labore beatae sit. Nobis ex expedita maxime soluta corrupti dolores nisi illo. Voluptatibus debitis atque at voluptatem. Pariatur labore iure voluptates blanditiis vitae.
2576
- Possimus fugit cupiditate totam dolorum eligendi. Ratione corrupti neque iusto porro. Blanditiis quo possimus nemo laboriosam necessitatibus nam itaque.
2577
- Alias earum mollitia dicta tempora ipsum. Amet dolores eius perferendis vero. Iusto nam facilis possimus quam.
2571
+ description: Incidunt sequi voluptas assumenda sapiente temporibus
2572
+ consequatur voluptatum architecto. Occaecati quod neque assumenda
2573
+ magni vel tenetur. Aliquam fugit voluptate quibusdam magni ullam
2574
+ est illo. Quas error atque at quaerat repudiandae. Voluptates
2575
+ vel molestiae corrupti enim sapiente expedita aliquid id. Natus
2576
+ numquam a repellendus quos reiciendis enim. Nostrum quos qui iste
2577
+ sapiente magni veniam recusandae nobis. Unde at cumque facere
2578
+ sunt alias maiores numquam.
2578
2579
  description_html: |-
2579
- Sunt commodi accusamus fuga dolorum facere eveniet. Explicabo dolorem velit quo aperiam repudiandae alias. Laudantium illum rem fugiat nulla quam officiis dicta. Iure odio maiores sunt dolor placeat numquam.
2580
- Vitae autem itaque amet recusandae voluptas corporis at quod. Eius dolor a recusandae corrupti provident qui ratione saepe. Veniam fugit nisi repudiandae consequuntur. Adipisci rerum rem aspernatur repudiandae possimus aliquam inventore. Aperiam laborum repudiandae illum dolorum accusamus facere.
2581
- Numquam saepe animi facilis deleniti labore beatae sit. Nobis ex expedita maxime soluta corrupti dolores nisi illo. Voluptatibus debitis atque at voluptatem. Pariatur labore iure voluptates blanditiis vitae.
2582
- Possimus fugit cupiditate totam dolorum eligendi. Ratione corrupti neque iusto porro. Blanditiis quo possimus nemo laboriosam necessitatibus nam itaque.
2583
- Alias earum mollitia dicta tempora ipsum. Amet dolores eius perferendis vero. Iusto nam facilis possimus quam.
2580
+ Incidunt sequi voluptas assumenda sapiente temporibus consequatur voluptatum architecto. Occaecati quod neque assumenda magni vel tenetur. Aliquam fugit voluptate quibusdam magni ullam est illo. Quas error atque at quaerat repudiandae. Voluptates vel molestiae corrupti enim sapiente expedita aliquid id.
2581
+ Natus numquam a repellendus quos reiciendis enim. Nostrum quos qui iste sapiente magni veniam recusandae nobis. Unde at cumque facere sunt alias maiores numquam.
2584
2582
  default_variant_id: variant_UkLWZg9DAJ
2585
2583
  thumbnail_url:
2586
2584
  tags: []
@@ -2638,7 +2636,7 @@ paths:
2638
2636
  get:
2639
2637
  summary: List countries
2640
2638
  tags:
2641
- - Internationalization
2639
+ - Markets
2642
2640
  security:
2643
2641
  - api_key: []
2644
2642
  description: Returns countries available in the store. Use ?expand=market to
@@ -2676,7 +2674,7 @@ paths:
2676
2674
  example:
2677
2675
  data:
2678
2676
  - iso: DE
2679
- iso3: IS21
2677
+ iso3: IS18
2680
2678
  name: Germany
2681
2679
  states_required: false
2682
2680
  zipcode_required: true
@@ -2708,7 +2706,7 @@ paths:
2708
2706
  get:
2709
2707
  summary: Get a country
2710
2708
  tags:
2711
- - Internationalization
2709
+ - Markets
2712
2710
  security:
2713
2711
  - api_key: []
2714
2712
  description: Returns a single country by ISO code. Supports ?expand=states for
@@ -2846,9 +2844,9 @@ paths:
2846
2844
  application/json:
2847
2845
  example:
2848
2846
  id: cart_UkLWZg9DAJ
2849
- number: R129895913
2850
- token: 4s3sAML82Z3thSXTQew9vtt5qACcWw5Drzu
2851
- email: laquanda_pollich@morar.ca
2847
+ number: R326400578
2848
+ token: 4JVz36SLLMbNR5z8WZwhR7YNKKDXQgKmrpt
2849
+ email: esta@tremblay.us
2852
2850
  customer_note:
2853
2851
  currency: USD
2854
2852
  locale: en
@@ -2869,8 +2867,8 @@ paths:
2869
2867
  display_total: "$110.00"
2870
2868
  delivery_total: '100.0'
2871
2869
  display_delivery_total: "$100.00"
2872
- created_at: '2026-03-21T19:52:19.942Z'
2873
- updated_at: '2026-03-21T19:52:20.050Z'
2870
+ created_at: '2026-03-23T07:54:54.090Z'
2871
+ updated_at: '2026-03-23T07:54:54.201Z'
2874
2872
  current_step: address
2875
2873
  completed_steps: []
2876
2874
  requirements: []
@@ -2881,8 +2879,8 @@ paths:
2881
2879
  variant_id: variant_UkLWZg9DAJ
2882
2880
  quantity: 1
2883
2881
  currency: USD
2884
- name: Product 233288
2885
- slug: product-233288
2882
+ name: Product 233383
2883
+ slug: product-233383
2886
2884
  options_text: ''
2887
2885
  price: '10.0'
2888
2886
  display_price: "$10.00"
@@ -2901,21 +2899,21 @@ paths:
2901
2899
  discounted_amount: '10.0'
2902
2900
  display_discounted_amount: "$10.00"
2903
2901
  display_compare_at_amount: "$0.00"
2904
- created_at: '2026-03-21T19:52:19.973Z'
2905
- updated_at: '2026-03-21T19:52:19.973Z'
2902
+ created_at: '2026-03-23T07:54:54.126Z'
2903
+ updated_at: '2026-03-23T07:54:54.126Z'
2906
2904
  compare_at_amount:
2907
2905
  thumbnail_url:
2908
2906
  option_values: []
2909
2907
  digital_links: []
2910
2908
  fulfillments:
2911
2909
  - id: ful_UkLWZg9DAJ
2912
- number: H64238468176
2910
+ number: H74687532176
2913
2911
  tracking: U10000
2914
2912
  tracking_url:
2915
2913
  cost: '100.0'
2916
2914
  display_cost: "$100.00"
2917
- created_at: '2026-03-21T19:52:19.980Z'
2918
- updated_at: '2026-03-21T19:52:19.993Z'
2915
+ created_at: '2026-03-23T07:54:54.133Z'
2916
+ updated_at: '2026-03-23T07:54:54.147Z'
2919
2917
  status: pending
2920
2918
  fulfillment_type: shipping
2921
2919
  fulfilled_at:
@@ -2929,14 +2927,14 @@ paths:
2929
2927
  code: UPS_GROUND
2930
2928
  stock_location:
2931
2929
  id: sloc_UkLWZg9DAJ
2932
- state_abbr: STATE_ABBR_85
2933
- name: Linn Watsica
2930
+ state_abbr: STATE_ABBR_80
2931
+ name: Shonta Hammes
2934
2932
  address1: 1600 Pennsylvania Ave NW
2935
2933
  city: Washington
2936
2934
  zipcode: '20500'
2937
2935
  country_iso: US
2938
2936
  country_name: United States of America
2939
- state_text: STATE_ABBR_85
2937
+ state_text: STATE_ABBR_80
2940
2938
  delivery_rates:
2941
2939
  - id: dr_UkLWZg9DAJ
2942
2940
  delivery_method_id: dm_UkLWZg9DAJ
@@ -2951,12 +2949,12 @@ paths:
2951
2949
  payments:
2952
2950
  - id: py_UkLWZg9DAJ
2953
2951
  payment_method_id: pm_UkLWZg9DAJ
2954
- response_code: 1-SC-20260321195220042222
2955
- number: PRRMB0A5
2952
+ response_code: 1-SC-20260323075454194079
2953
+ number: PXJRM75X
2956
2954
  amount: '50.0'
2957
2955
  display_amount: "$50.00"
2958
- created_at: '2026-03-21T19:52:20.044Z'
2959
- updated_at: '2026-03-21T19:52:20.044Z'
2956
+ created_at: '2026-03-23T07:54:54.195Z'
2957
+ updated_at: '2026-03-23T07:54:54.195Z'
2960
2958
  status: checkout
2961
2959
  source_type: store_credit
2962
2960
  source_id: credit_UkLWZg9DAJ
@@ -2980,7 +2978,7 @@ paths:
2980
2978
  first_name: John
2981
2979
  last_name: Doe
2982
2980
  full_name: John Doe
2983
- address1: 77 Lovely Street
2981
+ address1: 72 Lovely Street
2984
2982
  address2: Northwest
2985
2983
  postal_code: '35005'
2986
2984
  city: Herndon
@@ -2988,16 +2986,18 @@ paths:
2988
2986
  company: Company
2989
2987
  country_name: United States of America
2990
2988
  country_iso: US
2991
- state_text: STATE_ABBR_87
2992
- state_abbr: STATE_ABBR_87
2989
+ state_text: STATE_ABBR_82
2990
+ state_abbr: STATE_ABBR_82
2993
2991
  quick_checkout: false
2994
- state_name: STATE_NAME_87
2992
+ is_default_billing: false
2993
+ is_default_shipping: false
2994
+ state_name: STATE_NAME_82
2995
2995
  shipping_address:
2996
2996
  id: addr_VqXmZF31wY
2997
2997
  first_name: John
2998
2998
  last_name: Doe
2999
2999
  full_name: John Doe
3000
- address1: 78 Lovely Street
3000
+ address1: 73 Lovely Street
3001
3001
  address2: Northwest
3002
3002
  postal_code: '35005'
3003
3003
  city: Herndon
@@ -3005,10 +3005,12 @@ paths:
3005
3005
  company: Company
3006
3006
  country_name: United States of America
3007
3007
  country_iso: US
3008
- state_text: STATE_ABBR_88
3009
- state_abbr: STATE_ABBR_88
3008
+ state_text: STATE_ABBR_83
3009
+ state_abbr: STATE_ABBR_83
3010
3010
  quick_checkout: false
3011
- state_name: STATE_NAME_88
3011
+ is_default_billing: false
3012
+ is_default_shipping: false
3013
+ state_name: STATE_NAME_83
3012
3014
  payment_methods:
3013
3015
  - id: pm_UkLWZg9DAJ
3014
3016
  name: Store Credit
@@ -3100,9 +3102,9 @@ paths:
3100
3102
  application/json:
3101
3103
  example:
3102
3104
  id: cart_UkLWZg9DAJ
3103
- number: R632570151
3104
- token: o1kJ8zpaVsH8c4cnZueNPrCFK82aQ5iTKfz
3105
- email: novella@lockman.co.uk
3105
+ number: R171785123
3106
+ token: SRij6Tqm9dqzY3tvGHYrqtR5mnNdEwThSyC
3107
+ email: darius.dach@jaskolski.info
3106
3108
  customer_note:
3107
3109
  currency: USD
3108
3110
  locale: en
@@ -3123,8 +3125,8 @@ paths:
3123
3125
  display_total: "$110.00"
3124
3126
  delivery_total: '100.0'
3125
3127
  display_delivery_total: "$100.00"
3126
- created_at: '2026-03-21T19:52:21.271Z'
3127
- updated_at: '2026-03-21T19:52:21.384Z'
3128
+ created_at: '2026-03-23T07:54:55.375Z'
3129
+ updated_at: '2026-03-23T07:54:55.485Z'
3128
3130
  current_step: address
3129
3131
  completed_steps: []
3130
3132
  requirements:
@@ -3138,8 +3140,8 @@ paths:
3138
3140
  variant_id: variant_UkLWZg9DAJ
3139
3141
  quantity: 1
3140
3142
  currency: USD
3141
- name: Product 255869
3142
- slug: product-255869
3143
+ name: Product 252739
3144
+ slug: product-252739
3143
3145
  options_text: ''
3144
3146
  price: '10.0'
3145
3147
  display_price: "$10.00"
@@ -3158,21 +3160,21 @@ paths:
3158
3160
  discounted_amount: '10.0'
3159
3161
  display_discounted_amount: "$10.00"
3160
3162
  display_compare_at_amount: "$0.00"
3161
- created_at: '2026-03-21T19:52:21.302Z'
3162
- updated_at: '2026-03-21T19:52:21.380Z'
3163
+ created_at: '2026-03-23T07:54:55.406Z'
3164
+ updated_at: '2026-03-23T07:54:55.481Z'
3163
3165
  compare_at_amount:
3164
3166
  thumbnail_url:
3165
3167
  option_values: []
3166
3168
  digital_links: []
3167
3169
  fulfillments:
3168
3170
  - id: ful_UkLWZg9DAJ
3169
- number: H25198638382
3171
+ number: H29940306403
3170
3172
  tracking: U10000
3171
3173
  tracking_url:
3172
3174
  cost: '100.0'
3173
3175
  display_cost: "$100.00"
3174
- created_at: '2026-03-21T19:52:21.309Z'
3175
- updated_at: '2026-03-21T19:52:21.324Z'
3176
+ created_at: '2026-03-23T07:54:55.412Z'
3177
+ updated_at: '2026-03-23T07:54:55.425Z'
3176
3178
  status: pending
3177
3179
  fulfillment_type: shipping
3178
3180
  fulfilled_at:
@@ -3186,14 +3188,14 @@ paths:
3186
3188
  code: UPS_GROUND
3187
3189
  stock_location:
3188
3190
  id: sloc_UkLWZg9DAJ
3189
- state_abbr: STATE_ABBR_93
3190
- name: Bessie Cronin
3191
+ state_abbr: STATE_ABBR_88
3192
+ name: Reina Yundt
3191
3193
  address1: 1600 Pennsylvania Ave NW
3192
3194
  city: Washington
3193
3195
  zipcode: '20500'
3194
3196
  country_iso: US
3195
3197
  country_name: United States of America
3196
- state_text: STATE_ABBR_93
3198
+ state_text: STATE_ABBR_88
3197
3199
  delivery_rates:
3198
3200
  - id: dr_UkLWZg9DAJ
3199
3201
  delivery_method_id: dm_UkLWZg9DAJ
@@ -3211,7 +3213,7 @@ paths:
3211
3213
  first_name: John
3212
3214
  last_name: Doe
3213
3215
  full_name: John Doe
3214
- address1: 85 Lovely Street
3216
+ address1: 80 Lovely Street
3215
3217
  address2: Northwest
3216
3218
  postal_code: '35005'
3217
3219
  city: Herndon
@@ -3219,16 +3221,18 @@ paths:
3219
3221
  company: Company
3220
3222
  country_name: United States of America
3221
3223
  country_iso: US
3222
- state_text: STATE_ABBR_95
3223
- state_abbr: STATE_ABBR_95
3224
+ state_text: STATE_ABBR_90
3225
+ state_abbr: STATE_ABBR_90
3224
3226
  quick_checkout: false
3225
- state_name: STATE_NAME_95
3227
+ is_default_billing: false
3228
+ is_default_shipping: false
3229
+ state_name: STATE_NAME_90
3226
3230
  shipping_address:
3227
3231
  id: addr_VqXmZF31wY
3228
3232
  first_name: John
3229
3233
  last_name: Doe
3230
3234
  full_name: John Doe
3231
- address1: 86 Lovely Street
3235
+ address1: 81 Lovely Street
3232
3236
  address2: Northwest
3233
3237
  postal_code: '35005'
3234
3238
  city: Herndon
@@ -3236,10 +3240,12 @@ paths:
3236
3240
  company: Company
3237
3241
  country_name: United States of America
3238
3242
  country_iso: US
3239
- state_text: STATE_ABBR_96
3240
- state_abbr: STATE_ABBR_96
3243
+ state_text: STATE_ABBR_91
3244
+ state_abbr: STATE_ABBR_91
3241
3245
  quick_checkout: false
3242
- state_name: STATE_NAME_96
3246
+ is_default_billing: false
3247
+ is_default_shipping: false
3248
+ state_name: STATE_NAME_91
3243
3249
  payment_methods: []
3244
3250
  schema:
3245
3251
  "$ref": "#/components/schemas/Cart"
@@ -3253,7 +3259,7 @@ paths:
3253
3259
  message: The coupon code you entered doesn't exist. Please try again.
3254
3260
  schema:
3255
3261
  "$ref": "#/components/schemas/ErrorResponse"
3256
- "/api/v3/store/customer/credit_cards":
3262
+ "/api/v3/store/customers/me/credit_cards":
3257
3263
  get:
3258
3264
  summary: List saved credit cards
3259
3265
  tags:
@@ -3348,7 +3354,7 @@ paths:
3348
3354
  message: Authentication required
3349
3355
  schema:
3350
3356
  "$ref": "#/components/schemas/ErrorResponse"
3351
- "/api/v3/store/customer/credit_cards/{id}":
3357
+ "/api/v3/store/customers/me/credit_cards/{id}":
3352
3358
  get:
3353
3359
  summary: Get a credit card
3354
3360
  tags:
@@ -3475,7 +3481,7 @@ paths:
3475
3481
  get:
3476
3482
  summary: List supported currencies
3477
3483
  tags:
3478
- - Internationalization
3484
+ - Markets
3479
3485
  security:
3480
3486
  - api_key: []
3481
3487
  description: Returns currencies supported by the store (derived from markets)
@@ -3536,11 +3542,11 @@ paths:
3536
3542
  message: Valid API key required
3537
3543
  schema:
3538
3544
  "$ref": "#/components/schemas/ErrorResponse"
3539
- "/api/v3/store/customer/password_resets":
3545
+ "/api/v3/store/customers/me/password_resets":
3540
3546
  post:
3541
3547
  summary: Request a password reset
3542
3548
  tags:
3543
- - Password Resets
3549
+ - Authentication
3544
3550
  security:
3545
3551
  - api_key: []
3546
3552
  description: Sends a password reset email if an account exists for the given
@@ -3608,11 +3614,11 @@ paths:
3608
3614
  link. Validated against the store's allowed origins.
3609
3615
  required:
3610
3616
  - email
3611
- "/api/v3/store/customer/password_resets/{token}":
3617
+ "/api/v3/store/customers/me/password_resets/{token}":
3612
3618
  patch:
3613
3619
  summary: Reset password with token
3614
3620
  tags:
3615
- - Password Resets
3621
+ - Authentication
3616
3622
  security:
3617
3623
  - api_key: []
3618
3624
  description: Resets the password using a token received via email. Returns a
@@ -3653,17 +3659,17 @@ paths:
3653
3659
  content:
3654
3660
  application/json:
3655
3661
  example:
3656
- token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6ImM2MjIyZDNhLTVmNzItNDZkMC04ZjNiLWM0NDU5YWFiNTRkMyIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MTI2MzQ2fQ.8EXPjFz79skAS-oQJx-SrHgOCo9NEUuFL_Szz90FNSw
3657
- refresh_token: nPNXQ6aUXSaWFjBvpYqvJ6wc
3662
+ token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjhiOWMzNmM2LTY2ODYtNDI3YS1hYTE2LWEzM2E0N2YyNzdkZSIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjU2MTAwfQ.jMZYOyOyezQTI5j_kqWdDPzSCxnyxZRm70lRcldNVoI
3663
+ refresh_token: fkAaHcPSPWDVs38JsZgcvsaK
3658
3664
  user:
3659
3665
  id: cus_UkLWZg9DAJ
3660
3666
  email: customer@example.com
3661
- first_name: Deloise
3662
- last_name: Stoltenberg
3667
+ first_name: Joana
3668
+ last_name: Muller
3663
3669
  phone:
3664
3670
  accepts_email_marketing: false
3665
- created_at: '2026-03-21T19:52:26.388Z'
3666
- updated_at: '2026-03-21T19:52:26.665Z'
3671
+ created_at: '2026-03-23T07:55:00.370Z'
3672
+ updated_at: '2026-03-23T07:55:00.643Z'
3667
3673
  addresses: []
3668
3674
  default_billing_address:
3669
3675
  default_shipping_address:
@@ -3708,11 +3714,11 @@ paths:
3708
3714
  required:
3709
3715
  - password
3710
3716
  - password_confirmation
3711
- "/api/v3/store/customer/orders":
3717
+ "/api/v3/store/customers/me/orders":
3712
3718
  get:
3713
3719
  summary: List orders
3714
3720
  tags:
3715
- - Customer
3721
+ - Customers
3716
3722
  security:
3717
3723
  - api_key: []
3718
3724
  bearer_auth: []
@@ -3751,8 +3757,8 @@ paths:
3751
3757
  example:
3752
3758
  data:
3753
3759
  - id: or_UkLWZg9DAJ
3754
- number: R449227428
3755
- email: leisha@zieme.biz
3760
+ number: R607022205
3761
+ email: tod@funk.com
3756
3762
  customer_note:
3757
3763
  currency: USD
3758
3764
  locale: en
@@ -3775,17 +3781,17 @@ paths:
3775
3781
  display_delivery_total: "$100.00"
3776
3782
  fulfillment_status:
3777
3783
  payment_status:
3778
- completed_at: '2026-03-21T19:52:27.841Z'
3779
- created_at: '2026-03-21T19:52:27.769Z'
3780
- updated_at: '2026-03-21T19:52:27.840Z'
3784
+ completed_at: '2026-03-23T07:55:01.562Z'
3785
+ created_at: '2026-03-23T07:55:01.504Z'
3786
+ updated_at: '2026-03-23T07:55:01.562Z'
3781
3787
  discounts: []
3782
3788
  items:
3783
3789
  - id: li_UkLWZg9DAJ
3784
3790
  variant_id: variant_UkLWZg9DAJ
3785
3791
  quantity: 1
3786
3792
  currency: USD
3787
- name: Product 27272
3788
- slug: product-27272
3793
+ name: Product 27490
3794
+ slug: product-27490
3789
3795
  options_text: ''
3790
3796
  price: '10.0'
3791
3797
  display_price: "$10.00"
@@ -3804,21 +3810,21 @@ paths:
3804
3810
  discounted_amount: '10.0'
3805
3811
  display_discounted_amount: "$10.00"
3806
3812
  display_compare_at_amount: "$0.00"
3807
- created_at: '2026-03-21T19:52:27.814Z'
3808
- updated_at: '2026-03-21T19:52:27.814Z'
3813
+ created_at: '2026-03-23T07:55:01.538Z'
3814
+ updated_at: '2026-03-23T07:55:01.538Z'
3809
3815
  compare_at_amount:
3810
3816
  thumbnail_url:
3811
3817
  option_values: []
3812
3818
  digital_links: []
3813
3819
  fulfillments:
3814
3820
  - id: ful_UkLWZg9DAJ
3815
- number: H06729444803
3821
+ number: H13717829048
3816
3822
  tracking: U10000
3817
3823
  tracking_url:
3818
3824
  cost: '100.0'
3819
3825
  display_cost: "$100.00"
3820
- created_at: '2026-03-21T19:52:27.821Z'
3821
- updated_at: '2026-03-21T19:52:27.838Z'
3826
+ created_at: '2026-03-23T07:55:01.544Z'
3827
+ updated_at: '2026-03-23T07:55:01.559Z'
3822
3828
  status: pending
3823
3829
  fulfillment_type: shipping
3824
3830
  fulfilled_at:
@@ -3832,14 +3838,14 @@ paths:
3832
3838
  code: UPS_GROUND
3833
3839
  stock_location:
3834
3840
  id: sloc_UkLWZg9DAJ
3835
- state_abbr: STATE_ABBR_113
3836
- name: Palmira Kessler
3841
+ state_abbr: STATE_ABBR_108
3842
+ name: Celine Bins
3837
3843
  address1: 1600 Pennsylvania Ave NW
3838
3844
  city: Washington
3839
3845
  zipcode: '20500'
3840
3846
  country_iso: US
3841
3847
  country_name: United States of America
3842
- state_text: STATE_ABBR_113
3848
+ state_text: STATE_ABBR_108
3843
3849
  delivery_rates:
3844
3850
  - id: dr_gbHJdmfrXB
3845
3851
  delivery_method_id: dm_UkLWZg9DAJ
@@ -3857,7 +3863,7 @@ paths:
3857
3863
  first_name: John
3858
3864
  last_name: Doe
3859
3865
  full_name: John Doe
3860
- address1: 105 Lovely Street
3866
+ address1: 100 Lovely Street
3861
3867
  address2: Northwest
3862
3868
  postal_code: '35005'
3863
3869
  city: Herndon
@@ -3865,16 +3871,18 @@ paths:
3865
3871
  company: Company
3866
3872
  country_name: United States of America
3867
3873
  country_iso: US
3868
- state_text: STATE_ABBR_115
3869
- state_abbr: STATE_ABBR_115
3874
+ state_text: STATE_ABBR_110
3875
+ state_abbr: STATE_ABBR_110
3870
3876
  quick_checkout: false
3871
- state_name: STATE_NAME_115
3877
+ is_default_billing: false
3878
+ is_default_shipping: false
3879
+ state_name: STATE_NAME_110
3872
3880
  shipping_address:
3873
3881
  id: addr_VqXmZF31wY
3874
3882
  first_name: John
3875
3883
  last_name: Doe
3876
3884
  full_name: John Doe
3877
- address1: 106 Lovely Street
3885
+ address1: 101 Lovely Street
3878
3886
  address2: Northwest
3879
3887
  postal_code: '35005'
3880
3888
  city: Herndon
@@ -3882,10 +3890,12 @@ paths:
3882
3890
  company: Company
3883
3891
  country_name: United States of America
3884
3892
  country_iso: US
3885
- state_text: STATE_ABBR_116
3886
- state_abbr: STATE_ABBR_116
3893
+ state_text: STATE_ABBR_111
3894
+ state_abbr: STATE_ABBR_111
3887
3895
  quick_checkout: false
3888
- state_name: STATE_NAME_116
3896
+ is_default_billing: false
3897
+ is_default_shipping: false
3898
+ state_name: STATE_NAME_111
3889
3899
  meta:
3890
3900
  page: 1
3891
3901
  limit: 25
@@ -3906,11 +3916,11 @@ paths:
3906
3916
  message: Authentication required
3907
3917
  schema:
3908
3918
  "$ref": "#/components/schemas/ErrorResponse"
3909
- "/api/v3/store/customer/orders/{id}":
3919
+ "/api/v3/store/customers/me/orders/{id}":
3910
3920
  get:
3911
3921
  summary: Get an order
3912
3922
  tags:
3913
- - Customer
3923
+ - Customers
3914
3924
  security:
3915
3925
  - api_key: []
3916
3926
  bearer_auth: []
@@ -3953,8 +3963,8 @@ paths:
3953
3963
  application/json:
3954
3964
  example:
3955
3965
  id: or_UkLWZg9DAJ
3956
- number: R012712733
3957
- email: rebeca.kunze@gerhold.com
3966
+ number: R196025696
3967
+ email: risa.west@huel.us
3958
3968
  customer_note:
3959
3969
  currency: USD
3960
3970
  locale: en
@@ -3977,17 +3987,17 @@ paths:
3977
3987
  display_delivery_total: "$100.00"
3978
3988
  fulfillment_status:
3979
3989
  payment_status:
3980
- completed_at: '2026-03-21T19:52:28.533Z'
3981
- created_at: '2026-03-21T19:52:28.479Z'
3982
- updated_at: '2026-03-21T19:52:28.533Z'
3990
+ completed_at: '2026-03-23T07:55:02.255Z'
3991
+ created_at: '2026-03-23T07:55:02.200Z'
3992
+ updated_at: '2026-03-23T07:55:02.255Z'
3983
3993
  discounts: []
3984
3994
  items:
3985
3995
  - id: li_UkLWZg9DAJ
3986
3996
  variant_id: variant_UkLWZg9DAJ
3987
3997
  quantity: 1
3988
3998
  currency: USD
3989
- name: Product 293542
3990
- slug: product-293542
3999
+ name: Product 291248
4000
+ slug: product-291248
3991
4001
  options_text: ''
3992
4002
  price: '10.0'
3993
4003
  display_price: "$10.00"
@@ -4006,21 +4016,21 @@ paths:
4006
4016
  discounted_amount: '10.0'
4007
4017
  display_discounted_amount: "$10.00"
4008
4018
  display_compare_at_amount: "$0.00"
4009
- created_at: '2026-03-21T19:52:28.510Z'
4010
- updated_at: '2026-03-21T19:52:28.510Z'
4019
+ created_at: '2026-03-23T07:55:02.232Z'
4020
+ updated_at: '2026-03-23T07:55:02.232Z'
4011
4021
  compare_at_amount:
4012
4022
  thumbnail_url:
4013
4023
  option_values: []
4014
4024
  digital_links: []
4015
4025
  fulfillments:
4016
4026
  - id: ful_UkLWZg9DAJ
4017
- number: H83789468675
4027
+ number: H85505698303
4018
4028
  tracking: U10000
4019
4029
  tracking_url:
4020
4030
  cost: '100.0'
4021
4031
  display_cost: "$100.00"
4022
- created_at: '2026-03-21T19:52:28.516Z'
4023
- updated_at: '2026-03-21T19:52:28.530Z'
4032
+ created_at: '2026-03-23T07:55:02.237Z'
4033
+ updated_at: '2026-03-23T07:55:02.252Z'
4024
4034
  status: pending
4025
4035
  fulfillment_type: shipping
4026
4036
  fulfilled_at:
@@ -4034,14 +4044,14 @@ paths:
4034
4044
  code: UPS_GROUND
4035
4045
  stock_location:
4036
4046
  id: sloc_UkLWZg9DAJ
4037
- state_abbr: STATE_ABBR_119
4038
- name: Heike Hirthe
4047
+ state_abbr: STATE_ABBR_114
4048
+ name: Mikel O'Hara
4039
4049
  address1: 1600 Pennsylvania Ave NW
4040
4050
  city: Washington
4041
4051
  zipcode: '20500'
4042
4052
  country_iso: US
4043
4053
  country_name: United States of America
4044
- state_text: STATE_ABBR_119
4054
+ state_text: STATE_ABBR_114
4045
4055
  delivery_rates:
4046
4056
  - id: dr_gbHJdmfrXB
4047
4057
  delivery_method_id: dm_UkLWZg9DAJ
@@ -4059,7 +4069,7 @@ paths:
4059
4069
  first_name: John
4060
4070
  last_name: Doe
4061
4071
  full_name: John Doe
4062
- address1: 111 Lovely Street
4072
+ address1: 106 Lovely Street
4063
4073
  address2: Northwest
4064
4074
  postal_code: '35005'
4065
4075
  city: Herndon
@@ -4067,16 +4077,18 @@ paths:
4067
4077
  company: Company
4068
4078
  country_name: United States of America
4069
4079
  country_iso: US
4070
- state_text: STATE_ABBR_121
4071
- state_abbr: STATE_ABBR_121
4080
+ state_text: STATE_ABBR_116
4081
+ state_abbr: STATE_ABBR_116
4072
4082
  quick_checkout: false
4073
- state_name: STATE_NAME_121
4083
+ is_default_billing: false
4084
+ is_default_shipping: false
4085
+ state_name: STATE_NAME_116
4074
4086
  shipping_address:
4075
4087
  id: addr_VqXmZF31wY
4076
4088
  first_name: John
4077
4089
  last_name: Doe
4078
4090
  full_name: John Doe
4079
- address1: 112 Lovely Street
4091
+ address1: 107 Lovely Street
4080
4092
  address2: Northwest
4081
4093
  postal_code: '35005'
4082
4094
  city: Herndon
@@ -4084,10 +4096,12 @@ paths:
4084
4096
  company: Company
4085
4097
  country_name: United States of America
4086
4098
  country_iso: US
4087
- state_text: STATE_ABBR_122
4088
- state_abbr: STATE_ABBR_122
4099
+ state_text: STATE_ABBR_117
4100
+ state_abbr: STATE_ABBR_117
4089
4101
  quick_checkout: false
4090
- state_name: STATE_NAME_122
4102
+ is_default_billing: false
4103
+ is_default_shipping: false
4104
+ state_name: STATE_NAME_117
4091
4105
  schema:
4092
4106
  "$ref": "#/components/schemas/Order"
4093
4107
  '404':
@@ -4141,8 +4155,8 @@ paths:
4141
4155
  content:
4142
4156
  application/json:
4143
4157
  example:
4144
- token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjQzNDBlNWY4LTliY2EtNDZjOC04MzQzLWEwMmZmM2M3YWE0ZCIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MTI2MzQ5fQ.ze6KFsGdACuA5RKGLBmaBHuqpYlXEvIaEjbyoHYWhq0
4145
- refresh_token: UDubndqj55GJAkKwnkUcgboe
4158
+ token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjAzZDI0NzY5LWM0OTMtNDdjNS05OWY3LTdkMDdhYWQzOWYxNCIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjU2MTAzfQ.-wEuIDw4q3ZX7arLkiCuXiG2ew4nNfRTSy0FhbKgW9k
4159
+ refresh_token: uNByoAUZP2JYtMBKk92LqaKX
4146
4160
  user:
4147
4161
  id: cus_UkLWZg9DAJ
4148
4162
  email: newuser@example.com
@@ -4150,8 +4164,8 @@ paths:
4150
4164
  last_name: Doe
4151
4165
  phone: "+1234567890"
4152
4166
  accepts_email_marketing: true
4153
- created_at: '2026-03-21T19:52:29.768Z'
4154
- updated_at: '2026-03-21T19:52:29.768Z'
4167
+ created_at: '2026-03-23T07:55:03.460Z'
4168
+ updated_at: '2026-03-23T07:55:03.460Z'
4155
4169
  addresses: []
4156
4170
  default_billing_address:
4157
4171
  default_shipping_address:
@@ -4206,7 +4220,7 @@ paths:
4206
4220
  required:
4207
4221
  - email
4208
4222
  - password
4209
- "/api/v3/store/customer":
4223
+ "/api/v3/store/customers/me":
4210
4224
  get:
4211
4225
  summary: Get current customer profile
4212
4226
  tags:
@@ -4255,19 +4269,19 @@ paths:
4255
4269
  application/json:
4256
4270
  example:
4257
4271
  id: cus_UkLWZg9DAJ
4258
- email: sofia@beatty.biz
4259
- first_name: Tu
4260
- last_name: Koss
4272
+ email: tammi@schummthiel.biz
4273
+ first_name: Bea
4274
+ last_name: Koch
4261
4275
  phone: 555-555-0199
4262
4276
  accepts_email_marketing: false
4263
- created_at: '2026-03-21T19:52:30.366Z'
4264
- updated_at: '2026-03-21T19:52:30.636Z'
4277
+ created_at: '2026-03-23T07:55:04.010Z'
4278
+ updated_at: '2026-03-23T07:55:04.281Z'
4265
4279
  addresses:
4266
4280
  - id: addr_gbHJdmfrXB
4267
4281
  first_name: John
4268
4282
  last_name: Doe
4269
4283
  full_name: John Doe
4270
- address1: 118 Lovely Street
4284
+ address1: 113 Lovely Street
4271
4285
  address2: Northwest
4272
4286
  postal_code: '35005'
4273
4287
  city: Herndon
@@ -4275,15 +4289,17 @@ paths:
4275
4289
  company: Company
4276
4290
  country_name: United States of America
4277
4291
  country_iso: US
4278
- state_text: STATE_ABBR_128
4279
- state_abbr: STATE_ABBR_128
4292
+ state_text: STATE_ABBR_123
4293
+ state_abbr: STATE_ABBR_123
4280
4294
  quick_checkout: false
4281
- state_name: STATE_NAME_128
4295
+ is_default_billing: true
4296
+ is_default_shipping: false
4297
+ state_name: STATE_NAME_123
4282
4298
  - id: addr_UkLWZg9DAJ
4283
4299
  first_name: John
4284
4300
  last_name: Doe
4285
4301
  full_name: John Doe
4286
- address1: 117 Lovely Street
4302
+ address1: 112 Lovely Street
4287
4303
  address2: Northwest
4288
4304
  postal_code: '35005'
4289
4305
  city: Herndon
@@ -4291,16 +4307,18 @@ paths:
4291
4307
  company: Company
4292
4308
  country_name: United States of America
4293
4309
  country_iso: US
4294
- state_text: STATE_ABBR_127
4295
- state_abbr: STATE_ABBR_127
4310
+ state_text: STATE_ABBR_122
4311
+ state_abbr: STATE_ABBR_122
4296
4312
  quick_checkout: false
4297
- state_name: STATE_NAME_127
4313
+ is_default_billing: false
4314
+ is_default_shipping: true
4315
+ state_name: STATE_NAME_122
4298
4316
  default_billing_address:
4299
4317
  id: addr_gbHJdmfrXB
4300
4318
  first_name: John
4301
4319
  last_name: Doe
4302
4320
  full_name: John Doe
4303
- address1: 118 Lovely Street
4321
+ address1: 113 Lovely Street
4304
4322
  address2: Northwest
4305
4323
  postal_code: '35005'
4306
4324
  city: Herndon
@@ -4308,16 +4326,18 @@ paths:
4308
4326
  company: Company
4309
4327
  country_name: United States of America
4310
4328
  country_iso: US
4311
- state_text: STATE_ABBR_128
4312
- state_abbr: STATE_ABBR_128
4329
+ state_text: STATE_ABBR_123
4330
+ state_abbr: STATE_ABBR_123
4313
4331
  quick_checkout: false
4314
- state_name: STATE_NAME_128
4332
+ is_default_billing: true
4333
+ is_default_shipping: false
4334
+ state_name: STATE_NAME_123
4315
4335
  default_shipping_address:
4316
4336
  id: addr_UkLWZg9DAJ
4317
4337
  first_name: John
4318
4338
  last_name: Doe
4319
4339
  full_name: John Doe
4320
- address1: 117 Lovely Street
4340
+ address1: 112 Lovely Street
4321
4341
  address2: Northwest
4322
4342
  postal_code: '35005'
4323
4343
  city: Herndon
@@ -4325,10 +4345,12 @@ paths:
4325
4345
  company: Company
4326
4346
  country_name: United States of America
4327
4347
  country_iso: US
4328
- state_text: STATE_ABBR_127
4329
- state_abbr: STATE_ABBR_127
4348
+ state_text: STATE_ABBR_122
4349
+ state_abbr: STATE_ABBR_122
4330
4350
  quick_checkout: false
4331
- state_name: STATE_NAME_127
4351
+ is_default_billing: false
4352
+ is_default_shipping: true
4353
+ state_name: STATE_NAME_122
4332
4354
  schema:
4333
4355
  "$ref": "#/components/schemas/Customer"
4334
4356
  '401':
@@ -4385,19 +4407,19 @@ paths:
4385
4407
  application/json:
4386
4408
  example:
4387
4409
  id: cus_UkLWZg9DAJ
4388
- email: inocencia@lednerdibbert.com
4410
+ email: deedee@brekke.co.uk
4389
4411
  first_name: Updated
4390
4412
  last_name: Name
4391
4413
  phone: 555-555-0199
4392
4414
  accepts_email_marketing: false
4393
- created_at: '2026-03-21T19:52:30.929Z'
4394
- updated_at: '2026-03-21T19:52:31.268Z'
4415
+ created_at: '2026-03-23T07:55:04.571Z'
4416
+ updated_at: '2026-03-23T07:55:04.852Z'
4395
4417
  addresses:
4396
4418
  - id: addr_gbHJdmfrXB
4397
4419
  first_name: John
4398
4420
  last_name: Doe
4399
4421
  full_name: John Doe
4400
- address1: 120 Lovely Street
4422
+ address1: 115 Lovely Street
4401
4423
  address2: Northwest
4402
4424
  postal_code: '35005'
4403
4425
  city: Herndon
@@ -4405,15 +4427,17 @@ paths:
4405
4427
  company: Company
4406
4428
  country_name: United States of America
4407
4429
  country_iso: US
4408
- state_text: STATE_ABBR_130
4409
- state_abbr: STATE_ABBR_130
4430
+ state_text: STATE_ABBR_125
4431
+ state_abbr: STATE_ABBR_125
4410
4432
  quick_checkout: false
4411
- state_name: STATE_NAME_130
4433
+ is_default_billing: true
4434
+ is_default_shipping: false
4435
+ state_name: STATE_NAME_125
4412
4436
  - id: addr_UkLWZg9DAJ
4413
4437
  first_name: John
4414
4438
  last_name: Doe
4415
4439
  full_name: John Doe
4416
- address1: 119 Lovely Street
4440
+ address1: 114 Lovely Street
4417
4441
  address2: Northwest
4418
4442
  postal_code: '35005'
4419
4443
  city: Herndon
@@ -4421,16 +4445,18 @@ paths:
4421
4445
  company: Company
4422
4446
  country_name: United States of America
4423
4447
  country_iso: US
4424
- state_text: STATE_ABBR_129
4425
- state_abbr: STATE_ABBR_129
4448
+ state_text: STATE_ABBR_124
4449
+ state_abbr: STATE_ABBR_124
4426
4450
  quick_checkout: false
4427
- state_name: STATE_NAME_129
4451
+ is_default_billing: false
4452
+ is_default_shipping: true
4453
+ state_name: STATE_NAME_124
4428
4454
  default_billing_address:
4429
4455
  id: addr_gbHJdmfrXB
4430
4456
  first_name: John
4431
4457
  last_name: Doe
4432
4458
  full_name: John Doe
4433
- address1: 120 Lovely Street
4459
+ address1: 115 Lovely Street
4434
4460
  address2: Northwest
4435
4461
  postal_code: '35005'
4436
4462
  city: Herndon
@@ -4438,16 +4464,18 @@ paths:
4438
4464
  company: Company
4439
4465
  country_name: United States of America
4440
4466
  country_iso: US
4441
- state_text: STATE_ABBR_130
4442
- state_abbr: STATE_ABBR_130
4467
+ state_text: STATE_ABBR_125
4468
+ state_abbr: STATE_ABBR_125
4443
4469
  quick_checkout: false
4444
- state_name: STATE_NAME_130
4470
+ is_default_billing: true
4471
+ is_default_shipping: false
4472
+ state_name: STATE_NAME_125
4445
4473
  default_shipping_address:
4446
4474
  id: addr_UkLWZg9DAJ
4447
4475
  first_name: John
4448
4476
  last_name: Doe
4449
4477
  full_name: John Doe
4450
- address1: 119 Lovely Street
4478
+ address1: 114 Lovely Street
4451
4479
  address2: Northwest
4452
4480
  postal_code: '35005'
4453
4481
  city: Herndon
@@ -4455,10 +4483,12 @@ paths:
4455
4483
  company: Company
4456
4484
  country_name: United States of America
4457
4485
  country_iso: US
4458
- state_text: STATE_ABBR_129
4459
- state_abbr: STATE_ABBR_129
4486
+ state_text: STATE_ABBR_124
4487
+ state_abbr: STATE_ABBR_124
4460
4488
  quick_checkout: false
4461
- state_name: STATE_NAME_129
4489
+ is_default_billing: false
4490
+ is_default_shipping: true
4491
+ state_name: STATE_NAME_124
4462
4492
  schema:
4463
4493
  "$ref": "#/components/schemas/Customer"
4464
4494
  '422':
@@ -4556,101 +4586,6 @@ paths:
4556
4586
  application/octet-stream:
4557
4587
  schema:
4558
4588
  "$ref": "#/components/schemas/ErrorResponse"
4559
- "/api/v3/store/carts/{cart_id}/fulfillments":
4560
- get:
4561
- summary: List fulfillments
4562
- tags:
4563
- - Carts
4564
- security:
4565
- - api_key: []
4566
- bearer_auth: []
4567
- description: Returns all fulfillments with delivery rates for the cart.
4568
- x-codeSamples:
4569
- - lang: javascript
4570
- label: Spree SDK
4571
- source: |-
4572
- import { createClient } from '@spree/sdk'
4573
-
4574
- const client = createClient({
4575
- baseUrl: 'https://your-store.com',
4576
- publishableKey: '<api-key>',
4577
- })
4578
-
4579
- const fulfillments = await client.carts.fulfillments.list('cart_abc123', {
4580
- bearerToken: '<token>',
4581
- })
4582
- parameters:
4583
- - name: x-spree-api-key
4584
- in: header
4585
- required: true
4586
- schema:
4587
- type: string
4588
- - name: Authorization
4589
- in: header
4590
- required: false
4591
- schema:
4592
- type: string
4593
- - name: cart_id
4594
- in: path
4595
- required: true
4596
- description: Cart prefixed ID (e.g., cart_abc123)
4597
- schema:
4598
- type: string
4599
- - name: x-spree-token
4600
- in: header
4601
- required: false
4602
- description: Order token for guest access
4603
- schema:
4604
- type: string
4605
- responses:
4606
- '200':
4607
- description: fulfillments found
4608
- content:
4609
- application/json:
4610
- example:
4611
- data:
4612
- - id: ful_UkLWZg9DAJ
4613
- number: H99755672669
4614
- tracking: U10000
4615
- tracking_url:
4616
- cost: '100.0'
4617
- display_cost: "$100.00"
4618
- created_at: '2026-03-21T19:52:35.144Z'
4619
- updated_at: '2026-03-21T19:52:35.159Z'
4620
- status: pending
4621
- fulfillment_type: shipping
4622
- fulfilled_at:
4623
- items:
4624
- - item_id: li_UkLWZg9DAJ
4625
- variant_id: variant_UkLWZg9DAJ
4626
- quantity: 1
4627
- delivery_method:
4628
- id: dm_UkLWZg9DAJ
4629
- name: UPS Ground
4630
- code: UPS_GROUND
4631
- stock_location:
4632
- id: sloc_UkLWZg9DAJ
4633
- state_abbr: STATE_ABBR_145
4634
- name: Pearle Zulauf
4635
- address1: 1600 Pennsylvania Ave NW
4636
- city: Washington
4637
- zipcode: '20500'
4638
- country_iso: US
4639
- country_name: United States of America
4640
- state_text: STATE_ABBR_145
4641
- delivery_rates:
4642
- - id: dr_UkLWZg9DAJ
4643
- delivery_method_id: dm_UkLWZg9DAJ
4644
- name: UPS Ground
4645
- selected: true
4646
- cost: '100.0'
4647
- display_cost: "$100.00"
4648
- delivery_method:
4649
- id: dm_UkLWZg9DAJ
4650
- name: UPS Ground
4651
- code: UPS_GROUND
4652
- meta:
4653
- count: 1
4654
4589
  "/api/v3/store/carts/{cart_id}/fulfillments/{id}":
4655
4590
  patch:
4656
4591
  summary: Select delivery rate for fulfillment
@@ -4713,9 +4648,9 @@ paths:
4713
4648
  application/json:
4714
4649
  example:
4715
4650
  id: cart_UkLWZg9DAJ
4716
- number: R154639428
4717
- token: LSLQsNsEP8Rxe15rdW7ZTCr9TkVFgbM3jy1
4718
- email: annabel@stark.biz
4651
+ number: R332262450
4652
+ token: PhkeL2r1rhDbnpRQZtPERzvWRwGuqraidgm
4653
+ email: kathyrn@schulist.us
4719
4654
  customer_note:
4720
4655
  currency: USD
4721
4656
  locale: en
@@ -4736,8 +4671,8 @@ paths:
4736
4671
  display_total: "$110.00"
4737
4672
  delivery_total: '100.0'
4738
4673
  display_delivery_total: "$100.00"
4739
- created_at: '2026-03-21T19:52:35.792Z'
4740
- updated_at: '2026-03-21T19:52:35.887Z'
4674
+ created_at: '2026-03-23T07:55:08.008Z'
4675
+ updated_at: '2026-03-23T07:55:08.096Z'
4741
4676
  current_step: payment
4742
4677
  completed_steps:
4743
4678
  - address
@@ -4753,8 +4688,8 @@ paths:
4753
4688
  variant_id: variant_UkLWZg9DAJ
4754
4689
  quantity: 1
4755
4690
  currency: USD
4756
- name: Product 389431
4757
- slug: product-389431
4691
+ name: Product 37514
4692
+ slug: product-37514
4758
4693
  options_text: ''
4759
4694
  price: '10.0'
4760
4695
  display_price: "$10.00"
@@ -4773,21 +4708,21 @@ paths:
4773
4708
  discounted_amount: '10.0'
4774
4709
  display_discounted_amount: "$10.00"
4775
4710
  display_compare_at_amount: "$0.00"
4776
- created_at: '2026-03-21T19:52:35.825Z'
4777
- updated_at: '2026-03-21T19:52:35.825Z'
4711
+ created_at: '2026-03-23T07:55:08.037Z'
4712
+ updated_at: '2026-03-23T07:55:08.037Z'
4778
4713
  compare_at_amount:
4779
4714
  thumbnail_url:
4780
4715
  option_values: []
4781
4716
  digital_links: []
4782
4717
  fulfillments:
4783
4718
  - id: ful_UkLWZg9DAJ
4784
- number: H52902896694
4719
+ number: H43801837402
4785
4720
  tracking: U10000
4786
4721
  tracking_url:
4787
4722
  cost: '100.0'
4788
4723
  display_cost: "$100.00"
4789
- created_at: '2026-03-21T19:52:35.831Z'
4790
- updated_at: '2026-03-21T19:52:35.868Z'
4724
+ created_at: '2026-03-23T07:55:08.043Z'
4725
+ updated_at: '2026-03-23T07:55:08.079Z'
4791
4726
  status: pending
4792
4727
  fulfillment_type: shipping
4793
4728
  fulfilled_at:
@@ -4801,14 +4736,14 @@ paths:
4801
4736
  code: UPS_GROUND
4802
4737
  stock_location:
4803
4738
  id: sloc_UkLWZg9DAJ
4804
- state_abbr: STATE_ABBR_149
4805
- name: Brock Legros
4739
+ state_abbr: STATE_ABBR_140
4740
+ name: Anissa Wolff
4806
4741
  address1: 1600 Pennsylvania Ave NW
4807
4742
  city: Washington
4808
4743
  zipcode: '20500'
4809
4744
  country_iso: US
4810
4745
  country_name: United States of America
4811
- state_text: STATE_ABBR_149
4746
+ state_text: STATE_ABBR_140
4812
4747
  delivery_rates:
4813
4748
  - id: dr_UkLWZg9DAJ
4814
4749
  delivery_method_id: dm_UkLWZg9DAJ
@@ -4826,7 +4761,7 @@ paths:
4826
4761
  first_name: John
4827
4762
  last_name: Doe
4828
4763
  full_name: John Doe
4829
- address1: 141 Lovely Street
4764
+ address1: 132 Lovely Street
4830
4765
  address2: Northwest
4831
4766
  postal_code: '35005'
4832
4767
  city: Herndon
@@ -4834,16 +4769,18 @@ paths:
4834
4769
  company: Company
4835
4770
  country_name: United States of America
4836
4771
  country_iso: US
4837
- state_text: STATE_ABBR_151
4838
- state_abbr: STATE_ABBR_151
4772
+ state_text: STATE_ABBR_142
4773
+ state_abbr: STATE_ABBR_142
4839
4774
  quick_checkout: false
4840
- state_name: STATE_NAME_151
4775
+ is_default_billing: false
4776
+ is_default_shipping: false
4777
+ state_name: STATE_NAME_142
4841
4778
  shipping_address:
4842
4779
  id: addr_VqXmZF31wY
4843
4780
  first_name: John
4844
4781
  last_name: Doe
4845
4782
  full_name: John Doe
4846
- address1: 142 Lovely Street
4783
+ address1: 133 Lovely Street
4847
4784
  address2: Northwest
4848
4785
  postal_code: '35005'
4849
4786
  city: Herndon
@@ -4851,10 +4788,12 @@ paths:
4851
4788
  company: Company
4852
4789
  country_name: United States of America
4853
4790
  country_iso: US
4854
- state_text: STATE_ABBR_152
4855
- state_abbr: STATE_ABBR_152
4791
+ state_text: STATE_ABBR_143
4792
+ state_abbr: STATE_ABBR_143
4856
4793
  quick_checkout: false
4857
- state_name: STATE_NAME_152
4794
+ is_default_billing: false
4795
+ is_default_shipping: false
4796
+ state_name: STATE_NAME_143
4858
4797
  payment_methods: []
4859
4798
  schema:
4860
4799
  "$ref": "#/components/schemas/Cart"
@@ -4880,7 +4819,7 @@ paths:
4880
4819
  description: Delivery rate ID to select
4881
4820
  required:
4882
4821
  - selected_delivery_rate_id
4883
- "/api/v3/store/customer/gift_cards":
4822
+ "/api/v3/store/customers/me/gift_cards":
4884
4823
  get:
4885
4824
  summary: List gift cards
4886
4825
  tags:
@@ -4939,7 +4878,7 @@ paths:
4939
4878
  example:
4940
4879
  data:
4941
4880
  - id: gc_UkLWZg9DAJ
4942
- code: BFC2B760667ECF14
4881
+ code: 21E2305AE12CF568
4943
4882
  status: active
4944
4883
  currency: USD
4945
4884
  amount: '10.0'
@@ -4953,8 +4892,8 @@ paths:
4953
4892
  redeemed_at:
4954
4893
  expired: false
4955
4894
  active: true
4956
- created_at: '2026-03-21T19:52:37.204Z'
4957
- updated_at: '2026-03-21T19:52:37.204Z'
4895
+ created_at: '2026-03-23T07:55:09.274Z'
4896
+ updated_at: '2026-03-23T07:55:09.274Z'
4958
4897
  meta:
4959
4898
  page: 1
4960
4899
  limit: 25
@@ -4984,7 +4923,7 @@ paths:
4984
4923
  message: Authentication required
4985
4924
  schema:
4986
4925
  "$ref": "#/components/schemas/ErrorResponse"
4987
- "/api/v3/store/customer/gift_cards/{id}":
4926
+ "/api/v3/store/customers/me/gift_cards/{id}":
4988
4927
  get:
4989
4928
  summary: Get a gift card
4990
4929
  tags:
@@ -5037,7 +4976,7 @@ paths:
5037
4976
  application/json:
5038
4977
  example:
5039
4978
  id: gc_UkLWZg9DAJ
5040
- code: 576DFE86E060D6CE
4979
+ code: 34373980B6C3543E
5041
4980
  status: active
5042
4981
  currency: USD
5043
4982
  amount: '10.0'
@@ -5051,8 +4990,8 @@ paths:
5051
4990
  redeemed_at:
5052
4991
  expired: false
5053
4992
  active: true
5054
- created_at: '2026-03-21T19:52:38.300Z'
5055
- updated_at: '2026-03-21T19:52:38.300Z'
4993
+ created_at: '2026-03-23T07:55:10.379Z'
4994
+ updated_at: '2026-03-23T07:55:10.379Z'
5056
4995
  schema:
5057
4996
  "$ref": "#/components/schemas/GiftCard"
5058
4997
  '404':
@@ -5129,9 +5068,9 @@ paths:
5129
5068
  application/json:
5130
5069
  example:
5131
5070
  id: cart_UkLWZg9DAJ
5132
- number: R530607425
5133
- token: K5jW24bTLG9fLT97A7d8yAoA7khj5mX1t33
5134
- email: nakisha@grahamwiza.us
5071
+ number: R210549326
5072
+ token: Mb3irhx6orAYQU2YLVy2sgC1Jr5efmPU4JC
5073
+ email: madison@dubuquefeil.biz
5135
5074
  customer_note:
5136
5075
  currency: USD
5137
5076
  locale: en
@@ -5152,8 +5091,8 @@ paths:
5152
5091
  display_total: "$29.99"
5153
5092
  delivery_total: '0.0'
5154
5093
  display_delivery_total: "$0.00"
5155
- created_at: '2026-03-21T19:52:40.128Z'
5156
- updated_at: '2026-03-21T19:52:40.226Z'
5094
+ created_at: '2026-03-23T07:55:12.129Z'
5095
+ updated_at: '2026-03-23T07:55:12.291Z'
5157
5096
  current_step: address
5158
5097
  completed_steps: []
5159
5098
  requirements:
@@ -5173,8 +5112,8 @@ paths:
5173
5112
  variant_id: variant_UkLWZg9DAJ
5174
5113
  quantity: 1
5175
5114
  currency: USD
5176
- name: Product 429602
5177
- slug: product-429602
5115
+ name: Product 411957
5116
+ slug: product-411957
5178
5117
  options_text: ''
5179
5118
  price: '10.0'
5180
5119
  display_price: "$10.00"
@@ -5193,8 +5132,8 @@ paths:
5193
5132
  discounted_amount: '10.0'
5194
5133
  display_discounted_amount: "$10.00"
5195
5134
  display_compare_at_amount: "$0.00"
5196
- created_at: '2026-03-21T19:52:40.159Z'
5197
- updated_at: '2026-03-21T19:52:40.159Z'
5135
+ created_at: '2026-03-23T07:55:12.166Z'
5136
+ updated_at: '2026-03-23T07:55:12.166Z'
5198
5137
  compare_at_amount:
5199
5138
  thumbnail_url:
5200
5139
  option_values: []
@@ -5203,8 +5142,8 @@ paths:
5203
5142
  variant_id: variant_gbHJdmfrXB
5204
5143
  quantity: 1
5205
5144
  currency: USD
5206
- name: Product 433544
5207
- slug: product-433544
5145
+ name: Product 426023
5146
+ slug: product-426023
5208
5147
  options_text: ''
5209
5148
  price: '19.99'
5210
5149
  display_price: "$19.99"
@@ -5223,8 +5162,8 @@ paths:
5223
5162
  discounted_amount: '19.99'
5224
5163
  display_discounted_amount: "$19.99"
5225
5164
  display_compare_at_amount: "$0.00"
5226
- created_at: '2026-03-21T19:52:40.202Z'
5227
- updated_at: '2026-03-21T19:52:40.202Z'
5165
+ created_at: '2026-03-23T07:55:12.247Z'
5166
+ updated_at: '2026-03-23T07:55:12.247Z'
5228
5167
  compare_at_amount:
5229
5168
  thumbnail_url:
5230
5169
  option_values: []
@@ -5236,7 +5175,7 @@ paths:
5236
5175
  first_name: John
5237
5176
  last_name: Doe
5238
5177
  full_name: John Doe
5239
- address1: 160 Lovely Street
5178
+ address1: 151 Lovely Street
5240
5179
  address2: Northwest
5241
5180
  postal_code: '35005'
5242
5181
  city: Herndon
@@ -5244,10 +5183,12 @@ paths:
5244
5183
  company: Company
5245
5184
  country_name: United States of America
5246
5185
  country_iso: US
5247
- state_text: STATE_ABBR_170
5248
- state_abbr: STATE_ABBR_170
5186
+ state_text: STATE_ABBR_161
5187
+ state_abbr: STATE_ABBR_161
5249
5188
  quick_checkout: false
5250
- state_name: STATE_NAME_170
5189
+ is_default_billing: false
5190
+ is_default_shipping: false
5191
+ state_name: STATE_NAME_161
5251
5192
  shipping_address:
5252
5193
  payment_methods: []
5253
5194
  schema:
@@ -5344,9 +5285,9 @@ paths:
5344
5285
  application/json:
5345
5286
  example:
5346
5287
  id: cart_UkLWZg9DAJ
5347
- number: R861394244
5348
- token: NaVa6UfWE717T4ufMAwRaGYBaEWssMMjX97
5349
- email: ezekiel.schmitt@wiza.name
5288
+ number: R498988730
5289
+ token: Ltgvva3sDtKZcc18SJXpi5oEbnRbK1EDAoY
5290
+ email: raylene@leffler.name
5350
5291
  customer_note:
5351
5292
  currency: USD
5352
5293
  locale: en
@@ -5367,8 +5308,8 @@ paths:
5367
5308
  display_total: "$0.00"
5368
5309
  delivery_total: '0.0'
5369
5310
  display_delivery_total: "$0.00"
5370
- created_at: '2026-03-21T19:52:42.069Z'
5371
- updated_at: '2026-03-21T19:52:42.120Z'
5311
+ created_at: '2026-03-23T07:55:14.083Z'
5312
+ updated_at: '2026-03-23T07:55:14.115Z'
5372
5313
  current_step: address
5373
5314
  completed_steps: []
5374
5315
  requirements:
@@ -5385,8 +5326,8 @@ paths:
5385
5326
  variant_id: variant_UkLWZg9DAJ
5386
5327
  quantity: 1
5387
5328
  currency: USD
5388
- name: Product 468553
5389
- slug: product-468553
5329
+ name: Product 45841
5330
+ slug: product-45841
5390
5331
  options_text: ''
5391
5332
  price: '10.0'
5392
5333
  display_price: "$10.00"
@@ -5405,8 +5346,8 @@ paths:
5405
5346
  discounted_amount: '10.0'
5406
5347
  display_discounted_amount: "$10.00"
5407
5348
  display_compare_at_amount: "$0.00"
5408
- created_at: '2026-03-21T19:52:42.119Z'
5409
- updated_at: '2026-03-21T19:52:42.142Z'
5349
+ created_at: '2026-03-23T07:55:14.114Z'
5350
+ updated_at: '2026-03-23T07:55:14.130Z'
5410
5351
  compare_at_amount:
5411
5352
  thumbnail_url:
5412
5353
  option_values: []
@@ -5418,7 +5359,7 @@ paths:
5418
5359
  first_name: John
5419
5360
  last_name: Doe
5420
5361
  full_name: John Doe
5421
- address1: 169 Lovely Street
5362
+ address1: 160 Lovely Street
5422
5363
  address2: Northwest
5423
5364
  postal_code: '35005'
5424
5365
  city: Herndon
@@ -5426,10 +5367,12 @@ paths:
5426
5367
  company: Company
5427
5368
  country_name: United States of America
5428
5369
  country_iso: US
5429
- state_text: STATE_ABBR_179
5430
- state_abbr: STATE_ABBR_179
5370
+ state_text: STATE_ABBR_170
5371
+ state_abbr: STATE_ABBR_170
5431
5372
  quick_checkout: false
5432
- state_name: STATE_NAME_179
5373
+ is_default_billing: false
5374
+ is_default_shipping: false
5375
+ state_name: STATE_NAME_170
5433
5376
  shipping_address:
5434
5377
  payment_methods: []
5435
5378
  schema:
@@ -5506,9 +5449,9 @@ paths:
5506
5449
  application/json:
5507
5450
  example:
5508
5451
  id: cart_UkLWZg9DAJ
5509
- number: R765095735
5510
- token: u36SDKBNz9yc5XLDRTNbRBEksStn79rBoFk
5511
- email: leif@ankunding.name
5452
+ number: R421684236
5453
+ token: drCEijsnA2Xfb8CPNpcDMZhBbkm5HD7aSnA
5454
+ email: jesenia@dooleyhessel.co.uk
5512
5455
  customer_note:
5513
5456
  currency: USD
5514
5457
  locale: en
@@ -5529,8 +5472,8 @@ paths:
5529
5472
  display_total: "$0.00"
5530
5473
  delivery_total: '0.0'
5531
5474
  display_delivery_total: "$0.00"
5532
- created_at: '2026-03-21T19:52:42.774Z'
5533
- updated_at: '2026-03-21T19:52:42.859Z'
5475
+ created_at: '2026-03-23T07:55:14.683Z'
5476
+ updated_at: '2026-03-23T07:55:14.735Z'
5534
5477
  current_step: address
5535
5478
  completed_steps: []
5536
5479
  requirements:
@@ -5553,7 +5496,7 @@ paths:
5553
5496
  first_name: John
5554
5497
  last_name: Doe
5555
5498
  full_name: John Doe
5556
- address1: 172 Lovely Street
5499
+ address1: 163 Lovely Street
5557
5500
  address2: Northwest
5558
5501
  postal_code: '35005'
5559
5502
  city: Herndon
@@ -5561,10 +5504,12 @@ paths:
5561
5504
  company: Company
5562
5505
  country_name: United States of America
5563
5506
  country_iso: US
5564
- state_text: STATE_ABBR_182
5565
- state_abbr: STATE_ABBR_182
5507
+ state_text: STATE_ABBR_173
5508
+ state_abbr: STATE_ABBR_173
5566
5509
  quick_checkout: false
5567
- state_name: STATE_NAME_182
5510
+ is_default_billing: false
5511
+ is_default_shipping: false
5512
+ state_name: STATE_NAME_173
5568
5513
  shipping_address:
5569
5514
  payment_methods: []
5570
5515
  schema:
@@ -5583,7 +5528,7 @@ paths:
5583
5528
  get:
5584
5529
  summary: List supported locales
5585
5530
  tags:
5586
- - Internationalization
5531
+ - Markets
5587
5532
  security:
5588
5533
  - api_key: []
5589
5534
  description: Returns locales supported by the store (derived from markets)
@@ -5710,12 +5655,12 @@ paths:
5710
5655
  - fr
5711
5656
  countries:
5712
5657
  - iso: DE
5713
- iso3: IS45
5658
+ iso3: IS41
5714
5659
  name: Germany
5715
5660
  states_required: false
5716
5661
  zipcode_required: true
5717
5662
  - iso: FR
5718
- iso3: IS46
5663
+ iso3: IS42
5719
5664
  name: France
5720
5665
  states_required: false
5721
5666
  zipcode_required: true
@@ -5794,12 +5739,12 @@ paths:
5794
5739
  - fr
5795
5740
  countries:
5796
5741
  - iso: DE
5797
- iso3: IS49
5742
+ iso3: IS45
5798
5743
  name: Germany
5799
5744
  states_required: false
5800
5745
  zipcode_required: true
5801
5746
  - iso: FR
5802
- iso3: IS50
5747
+ iso3: IS46
5803
5748
  name: France
5804
5749
  states_required: false
5805
5750
  zipcode_required: true
@@ -5874,12 +5819,12 @@ paths:
5874
5819
  - fr
5875
5820
  countries:
5876
5821
  - iso: DE
5877
- iso3: IS53
5822
+ iso3: IS49
5878
5823
  name: Germany
5879
5824
  states_required: false
5880
5825
  zipcode_required: true
5881
5826
  - iso: FR
5882
- iso3: IS54
5827
+ iso3: IS50
5883
5828
  name: France
5884
5829
  states_required: false
5885
5830
  zipcode_required: true
@@ -5943,12 +5888,12 @@ paths:
5943
5888
  example:
5944
5889
  data:
5945
5890
  - iso: FR
5946
- iso3: IS58
5891
+ iso3: IS54
5947
5892
  name: France
5948
5893
  states_required: false
5949
5894
  zipcode_required: true
5950
5895
  - iso: DE
5951
- iso3: IS57
5896
+ iso3: IS53
5952
5897
  name: Germany
5953
5898
  states_required: false
5954
5899
  zipcode_required: true
@@ -6083,7 +6028,7 @@ paths:
6083
6028
  application/json:
6084
6029
  example:
6085
6030
  id: or_UkLWZg9DAJ
6086
- number: R073921071
6031
+ number: R842607622
6087
6032
  email: guest@example.com
6088
6033
  customer_note:
6089
6034
  currency: USD
@@ -6107,17 +6052,17 @@ paths:
6107
6052
  display_delivery_total: "$100.00"
6108
6053
  fulfillment_status:
6109
6054
  payment_status:
6110
- completed_at: '2026-03-21T19:52:45.368Z'
6111
- created_at: '2026-03-21T19:52:45.283Z'
6112
- updated_at: '2026-03-21T19:52:45.367Z'
6055
+ completed_at: '2026-03-23T07:55:16.469Z'
6056
+ created_at: '2026-03-23T07:55:16.404Z'
6057
+ updated_at: '2026-03-23T07:55:16.469Z'
6113
6058
  discounts: []
6114
6059
  items:
6115
6060
  - id: li_UkLWZg9DAJ
6116
6061
  variant_id: variant_UkLWZg9DAJ
6117
6062
  quantity: 1
6118
6063
  currency: USD
6119
- name: Product 504078
6120
- slug: product-504078
6064
+ name: Product 496677
6065
+ slug: product-496677
6121
6066
  options_text: ''
6122
6067
  price: '10.0'
6123
6068
  display_price: "$10.00"
@@ -6136,21 +6081,21 @@ paths:
6136
6081
  discounted_amount: '10.0'
6137
6082
  display_discounted_amount: "$10.00"
6138
6083
  display_compare_at_amount: "$0.00"
6139
- created_at: '2026-03-21T19:52:45.333Z'
6140
- updated_at: '2026-03-21T19:52:45.333Z'
6084
+ created_at: '2026-03-23T07:55:16.440Z'
6085
+ updated_at: '2026-03-23T07:55:16.440Z'
6141
6086
  compare_at_amount:
6142
6087
  thumbnail_url:
6143
6088
  option_values: []
6144
6089
  digital_links: []
6145
6090
  fulfillments:
6146
6091
  - id: ful_UkLWZg9DAJ
6147
- number: H63432445025
6092
+ number: H67269020522
6148
6093
  tracking: U10000
6149
6094
  tracking_url:
6150
6095
  cost: '100.0'
6151
6096
  display_cost: "$100.00"
6152
- created_at: '2026-03-21T19:52:45.341Z'
6153
- updated_at: '2026-03-21T19:52:45.362Z'
6097
+ created_at: '2026-03-23T07:55:16.447Z'
6098
+ updated_at: '2026-03-23T07:55:16.463Z'
6154
6099
  status: pending
6155
6100
  fulfillment_type: shipping
6156
6101
  fulfilled_at:
@@ -6164,14 +6109,14 @@ paths:
6164
6109
  code: UPS_GROUND
6165
6110
  stock_location:
6166
6111
  id: sloc_UkLWZg9DAJ
6167
- state_abbr: STATE_ABBR_190
6168
- name: Melonie Daniel
6112
+ state_abbr: STATE_ABBR_181
6113
+ name: Cleo Weimann
6169
6114
  address1: 1600 Pennsylvania Ave NW
6170
6115
  city: Washington
6171
6116
  zipcode: '20500'
6172
6117
  country_iso: US
6173
6118
  country_name: United States of America
6174
- state_text: STATE_ABBR_190
6119
+ state_text: STATE_ABBR_181
6175
6120
  delivery_rates:
6176
6121
  - id: dr_gbHJdmfrXB
6177
6122
  delivery_method_id: dm_UkLWZg9DAJ
@@ -6189,7 +6134,7 @@ paths:
6189
6134
  first_name: John
6190
6135
  last_name: Doe
6191
6136
  full_name: John Doe
6192
- address1: 180 Lovely Street
6137
+ address1: 171 Lovely Street
6193
6138
  address2: Northwest
6194
6139
  postal_code: '35005'
6195
6140
  city: Herndon
@@ -6197,16 +6142,18 @@ paths:
6197
6142
  company: Company
6198
6143
  country_name: United States of America
6199
6144
  country_iso: US
6200
- state_text: STATE_ABBR_190
6201
- state_abbr: STATE_ABBR_190
6145
+ state_text: STATE_ABBR_181
6146
+ state_abbr: STATE_ABBR_181
6202
6147
  quick_checkout: false
6203
- state_name: STATE_NAME_190
6148
+ is_default_billing: false
6149
+ is_default_shipping: false
6150
+ state_name: STATE_NAME_181
6204
6151
  shipping_address:
6205
6152
  id: addr_gbHJdmfrXB
6206
6153
  first_name: John
6207
6154
  last_name: Doe
6208
6155
  full_name: John Doe
6209
- address1: 181 Lovely Street
6156
+ address1: 172 Lovely Street
6210
6157
  address2: Northwest
6211
6158
  postal_code: '35005'
6212
6159
  city: Herndon
@@ -6214,10 +6161,12 @@ paths:
6214
6161
  company: Company
6215
6162
  country_name: United States of America
6216
6163
  country_iso: US
6217
- state_text: STATE_ABBR_191
6218
- state_abbr: STATE_ABBR_191
6164
+ state_text: STATE_ABBR_182
6165
+ state_abbr: STATE_ABBR_182
6219
6166
  quick_checkout: false
6220
- state_name: STATE_NAME_191
6167
+ is_default_billing: false
6168
+ is_default_shipping: false
6169
+ state_name: STATE_NAME_182
6221
6170
  schema:
6222
6171
  "$ref": "#/components/schemas/Order"
6223
6172
  '404':
@@ -6230,80 +6179,6 @@ paths:
6230
6179
  message: Order not found
6231
6180
  schema:
6232
6181
  "$ref": "#/components/schemas/ErrorResponse"
6233
- "/api/v3/store/carts/{cart_id}/payment_methods":
6234
- get:
6235
- summary: List available payment methods
6236
- tags:
6237
- - Carts
6238
- security:
6239
- - api_key: []
6240
- bearer_auth: []
6241
- description: Returns payment methods available for the current cart based on
6242
- store configuration and order state.
6243
- x-codeSamples:
6244
- - lang: javascript
6245
- label: Spree SDK
6246
- source: |-
6247
- import { createClient } from '@spree/sdk'
6248
-
6249
- const client = createClient({
6250
- baseUrl: 'https://your-store.com',
6251
- publishableKey: '<api-key>',
6252
- })
6253
-
6254
- const methods = await client.carts.paymentMethods.list('cart_abc123', {
6255
- bearerToken: '<token>',
6256
- })
6257
- parameters:
6258
- - name: x-spree-api-key
6259
- in: header
6260
- required: true
6261
- schema:
6262
- type: string
6263
- - name: Authorization
6264
- in: header
6265
- required: false
6266
- description: Bearer token for authenticated customers
6267
- schema:
6268
- type: string
6269
- - name: cart_id
6270
- in: path
6271
- required: true
6272
- description: Cart prefixed ID (e.g., cart_abc123)
6273
- schema:
6274
- type: string
6275
- - name: x-spree-token
6276
- in: header
6277
- required: false
6278
- description: Order token for guest access
6279
- schema:
6280
- type: string
6281
- responses:
6282
- '200':
6283
- description: payment methods found
6284
- content:
6285
- application/json:
6286
- example:
6287
- data:
6288
- - id: pm_UkLWZg9DAJ
6289
- name: Credit Card
6290
- description:
6291
- type: Spree::Gateway::Bogus
6292
- session_required: true
6293
- meta:
6294
- count: 1
6295
- schema:
6296
- type: object
6297
- properties:
6298
- data:
6299
- type: array
6300
- items:
6301
- "$ref": "#/components/schemas/PaymentMethod"
6302
- meta:
6303
- type: object
6304
- properties:
6305
- count:
6306
- type: integer
6307
6182
  "/api/v3/store/carts/{cart_id}/payment_sessions":
6308
6183
  post:
6309
6184
  summary: Create payment session
@@ -6370,13 +6245,13 @@ paths:
6370
6245
  id: ps_gbHJdmfrXB
6371
6246
  status: pending
6372
6247
  currency: USD
6373
- external_id: bogus_361f8aeb0f3b36d339358cb9
6248
+ external_id: bogus_c65264d1899ab86b3f170bd2
6374
6249
  external_data:
6375
- client_secret: bogus_secret_13facd8c6581f0af
6250
+ client_secret: bogus_secret_8c111c414eb6cd5d
6376
6251
  customer_external_id:
6377
6252
  expires_at:
6378
- created_at: '2026-03-21T19:52:47.966Z'
6379
- updated_at: '2026-03-21T19:52:47.966Z'
6253
+ created_at: '2026-03-23T07:55:18.293Z'
6254
+ updated_at: '2026-03-23T07:55:18.293Z'
6380
6255
  amount: '110.0'
6381
6256
  payment_method_id: pm_UkLWZg9DAJ
6382
6257
  order_id: or_UkLWZg9DAJ
@@ -6471,13 +6346,13 @@ paths:
6471
6346
  id: ps_UkLWZg9DAJ
6472
6347
  status: pending
6473
6348
  currency: USD
6474
- external_id: bogus_cfa244bf12cbdc4cc2b4a422
6349
+ external_id: bogus_0ec882834cdc60e4df3e3421
6475
6350
  external_data:
6476
6351
  client_secret: secret_123
6477
6352
  customer_external_id:
6478
6353
  expires_at:
6479
- created_at: '2026-03-21T19:52:48.650Z'
6480
- updated_at: '2026-03-21T19:52:48.650Z'
6354
+ created_at: '2026-03-23T07:55:18.900Z'
6355
+ updated_at: '2026-03-23T07:55:18.900Z'
6481
6356
  amount: '110.0'
6482
6357
  payment_method_id: pm_UkLWZg9DAJ
6483
6358
  order_id: or_UkLWZg9DAJ
@@ -6534,13 +6409,13 @@ paths:
6534
6409
  id: ps_UkLWZg9DAJ
6535
6410
  status: pending
6536
6411
  currency: USD
6537
- external_id: bogus_1226b6e7dbd001c2642011b6
6412
+ external_id: bogus_aa43862bb8d8c14aeb52e16d
6538
6413
  external_data:
6539
6414
  client_secret: secret_123
6540
6415
  customer_external_id:
6541
6416
  expires_at:
6542
- created_at: '2026-03-21T19:52:50.033Z'
6543
- updated_at: '2026-03-21T19:52:50.053Z'
6417
+ created_at: '2026-03-23T07:55:20.225Z'
6418
+ updated_at: '2026-03-23T07:55:20.239Z'
6544
6419
  amount: '50.0'
6545
6420
  payment_method_id: pm_UkLWZg9DAJ
6546
6421
  order_id: or_UkLWZg9DAJ
@@ -6637,13 +6512,13 @@ paths:
6637
6512
  id: ps_UkLWZg9DAJ
6638
6513
  status: completed
6639
6514
  currency: USD
6640
- external_id: bogus_8000399643a67c420bc5ec30
6515
+ external_id: bogus_d8b2ff05b1a90aea9bd7d1cf
6641
6516
  external_data:
6642
6517
  client_secret: secret_123
6643
6518
  customer_external_id:
6644
6519
  expires_at:
6645
- created_at: '2026-03-21T19:52:50.706Z'
6646
- updated_at: '2026-03-21T19:52:50.719Z'
6520
+ created_at: '2026-03-23T07:55:20.872Z'
6521
+ updated_at: '2026-03-23T07:55:20.887Z'
6647
6522
  amount: '110.0'
6648
6523
  payment_method_id: pm_UkLWZg9DAJ
6649
6524
  order_id: or_UkLWZg9DAJ
@@ -6677,7 +6552,7 @@ paths:
6677
6552
  external_data:
6678
6553
  type: object
6679
6554
  description: Provider-specific completion data
6680
- "/api/v3/store/customer/payment_setup_sessions":
6555
+ "/api/v3/store/customers/me/payment_setup_sessions":
6681
6556
  post:
6682
6557
  summary: Create payment setup session
6683
6558
  tags:
@@ -6723,11 +6598,11 @@ paths:
6723
6598
  example:
6724
6599
  id: pss_gbHJdmfrXB
6725
6600
  status: pending
6726
- external_id: bogus_seti_bc92ca51561f12451a2ad9de
6727
- external_client_secret: bogus_seti_secret_fdb823de0a0a784d
6601
+ external_id: bogus_seti_efd305130228f10e9f078e81
6602
+ external_client_secret: bogus_seti_secret_f236909d4aa857fa
6728
6603
  external_data: {}
6729
- created_at: '2026-03-21T19:52:52.045Z'
6730
- updated_at: '2026-03-21T19:52:52.045Z'
6604
+ created_at: '2026-03-23T07:55:22.121Z'
6605
+ updated_at: '2026-03-23T07:55:22.121Z'
6731
6606
  payment_method_id: pm_UkLWZg9DAJ
6732
6607
  payment_source_id:
6733
6608
  payment_source_type:
@@ -6775,7 +6650,7 @@ paths:
6775
6650
  description: Provider-specific data passed to the gateway
6776
6651
  required:
6777
6652
  - payment_method_id
6778
- "/api/v3/store/customer/payment_setup_sessions/{id}":
6653
+ "/api/v3/store/customers/me/payment_setup_sessions/{id}":
6779
6654
  parameters:
6780
6655
  - name: x-spree-api-key
6781
6656
  in: header
@@ -6824,12 +6699,12 @@ paths:
6824
6699
  example:
6825
6700
  id: pss_UkLWZg9DAJ
6826
6701
  status: pending
6827
- external_id: seti_test_9576b402eff7dd32426f2041
6828
- external_client_secret: seti_secret_5db0c87a9f010ac2cf7ab1c3
6702
+ external_id: seti_test_1132de438ac92692871efb95
6703
+ external_client_secret: seti_secret_8a49a72045f4dadd1fcb1f07
6829
6704
  external_data:
6830
6705
  client_secret: secret_123
6831
- created_at: '2026-03-21T19:52:53.985Z'
6832
- updated_at: '2026-03-21T19:52:53.985Z'
6706
+ created_at: '2026-03-23T07:55:23.989Z'
6707
+ updated_at: '2026-03-23T07:55:23.989Z'
6833
6708
  payment_method_id: pm_UkLWZg9DAJ
6834
6709
  payment_source_id:
6835
6710
  payment_source_type:
@@ -6852,7 +6727,7 @@ paths:
6852
6727
  message: Payment setup session not found
6853
6728
  schema:
6854
6729
  "$ref": "#/components/schemas/ErrorResponse"
6855
- "/api/v3/store/customer/payment_setup_sessions/{id}/complete":
6730
+ "/api/v3/store/customers/me/payment_setup_sessions/{id}/complete":
6856
6731
  parameters:
6857
6732
  - name: x-spree-api-key
6858
6733
  in: header
@@ -6902,12 +6777,12 @@ paths:
6902
6777
  example:
6903
6778
  id: pss_UkLWZg9DAJ
6904
6779
  status: completed
6905
- external_id: seti_test_ecbf29836d524e4f7e985bdc
6906
- external_client_secret: seti_secret_921e1c544210b71960358c2c
6780
+ external_id: seti_test_ff021fb26de9c07b6373f40b
6781
+ external_client_secret: seti_secret_2229096fac1b0d9a589c4eca
6907
6782
  external_data:
6908
6783
  client_secret: secret_123
6909
- created_at: '2026-03-21T19:52:55.237Z'
6910
- updated_at: '2026-03-21T19:52:55.251Z'
6784
+ created_at: '2026-03-23T07:55:25.154Z'
6785
+ updated_at: '2026-03-23T07:55:25.179Z'
6911
6786
  payment_method_id: pm_UkLWZg9DAJ
6912
6787
  payment_source_id: card_UkLWZg9DAJ
6913
6788
  payment_source_type: Spree::CreditCard
@@ -6940,93 +6815,6 @@ paths:
6940
6815
  type: object
6941
6816
  description: Provider-specific completion data
6942
6817
  "/api/v3/store/carts/{cart_id}/payments":
6943
- get:
6944
- summary: List payments
6945
- tags:
6946
- - Carts
6947
- security:
6948
- - api_key: []
6949
- bearer_auth: []
6950
- description: Returns all payments for the cart.
6951
- x-codeSamples:
6952
- - lang: javascript
6953
- label: Spree SDK
6954
- source: |-
6955
- import { createClient } from '@spree/sdk'
6956
-
6957
- const client = createClient({
6958
- baseUrl: 'https://your-store.com',
6959
- publishableKey: '<api-key>',
6960
- })
6961
-
6962
- const payments = await client.carts.payments.list('cart_abc123', {
6963
- bearerToken: '<token>',
6964
- })
6965
- parameters:
6966
- - name: x-spree-api-key
6967
- in: header
6968
- required: true
6969
- schema:
6970
- type: string
6971
- - name: Authorization
6972
- in: header
6973
- required: false
6974
- schema:
6975
- type: string
6976
- - name: cart_id
6977
- in: path
6978
- required: true
6979
- description: Cart prefixed ID (e.g., cart_abc123)
6980
- schema:
6981
- type: string
6982
- - name: x-spree-token
6983
- in: header
6984
- required: false
6985
- schema:
6986
- type: string
6987
- responses:
6988
- '200':
6989
- description: payments listed
6990
- content:
6991
- application/json:
6992
- example:
6993
- data:
6994
- - id: py_UkLWZg9DAJ
6995
- payment_method_id: pm_UkLWZg9DAJ
6996
- response_code: '12345'
6997
- number: PTYMY6KZ
6998
- amount: '110.0'
6999
- display_amount: "$110.00"
7000
- created_at: '2026-03-21T19:52:56.656Z'
7001
- updated_at: '2026-03-21T19:52:56.656Z'
7002
- status: checkout
7003
- source_type: credit_card
7004
- source_id: card_UkLWZg9DAJ
7005
- source:
7006
- id: card_UkLWZg9DAJ
7007
- brand: visa
7008
- last4: '1111'
7009
- month: 12
7010
- year: 2027
7011
- name: Spree Commerce
7012
- default: false
7013
- gateway_payment_profile_id:
7014
- payment_method:
7015
- id: pm_UkLWZg9DAJ
7016
- name: Check
7017
- description:
7018
- type: Spree::PaymentMethod::Check
7019
- session_required: false
7020
- meta:
7021
- page: 1
7022
- limit: 25
7023
- count: 1
7024
- pages: 1
7025
- from: 1
7026
- to: 1
7027
- in: 1
7028
- previous:
7029
- next:
7030
6818
  post:
7031
6819
  summary: Create payment
7032
6820
  tags:
@@ -7085,11 +6873,11 @@ paths:
7085
6873
  id: py_UkLWZg9DAJ
7086
6874
  payment_method_id: pm_UkLWZg9DAJ
7087
6875
  response_code:
7088
- number: P5MM9RYH
6876
+ number: PB0GSFSV
7089
6877
  amount: '110.0'
7090
6878
  display_amount: "$110.00"
7091
- created_at: '2026-03-21T19:52:57.287Z'
7092
- updated_at: '2026-03-21T19:52:57.287Z'
6879
+ created_at: '2026-03-23T07:55:26.430Z'
6880
+ updated_at: '2026-03-23T07:55:26.430Z'
7093
6881
  status: checkout
7094
6882
  source_type:
7095
6883
  source_id:
@@ -7247,26 +7035,20 @@ paths:
7247
7035
  example:
7248
7036
  data:
7249
7037
  - id: prod_UkLWZg9DAJ
7250
- name: Product 623277
7251
- slug: product-623277
7038
+ name: Product 595582
7039
+ slug: product-595582
7252
7040
  meta_description:
7253
7041
  meta_keywords:
7254
7042
  variant_count: 1
7255
- available_on: '2025-03-21T19:52:57.956Z'
7256
- created_at: '2026-03-21T19:52:57.969Z'
7257
- updated_at: '2026-03-21T19:52:58.013Z'
7043
+ available_on: '2025-03-23T07:55:27.123Z'
7044
+ created_at: '2026-03-23T07:55:27.136Z'
7045
+ updated_at: '2026-03-23T07:55:27.178Z'
7258
7046
  purchasable: true
7259
7047
  in_stock: false
7260
7048
  backorderable: true
7261
7049
  available: true
7262
- description: |-
7263
- Excepturi est facere mollitia a sunt. Reiciendis cum laborum quidem minus nesciunt. Odit soluta hic dicta iste vitae laboriosam enim sint. Quaerat vero perferendis nisi adipisci quisquam.
7264
- Beatae autem doloribus cum inventore officia. Culpa veritatis molestiae amet provident reprehenderit. Sed exercitationem quae dicta voluptas excepturi aliquam consequatur. Perspiciatis qui iusto laboriosam unde veniam.
7265
- Modi ea libero veniam voluptates et laborum architecto asperiores. Voluptates ea mollitia est ab eveniet necessitatibus praesentium enim. Ipsum quidem officiis inventore provident nam.
7266
- description_html: |-
7267
- Excepturi est facere mollitia a sunt. Reiciendis cum laborum quidem minus nesciunt. Odit soluta hic dicta iste vitae laboriosam enim sint. Quaerat vero perferendis nisi adipisci quisquam.
7268
- Beatae autem doloribus cum inventore officia. Culpa veritatis molestiae amet provident reprehenderit. Sed exercitationem quae dicta voluptas excepturi aliquam consequatur. Perspiciatis qui iusto laboriosam unde veniam.
7269
- Modi ea libero veniam voluptates et laborum architecto asperiores. Voluptates ea mollitia est ab eveniet necessitatibus praesentium enim. Ipsum quidem officiis inventore provident nam.
7050
+ description: A comfortable cotton t-shirt.
7051
+ description_html: "<p>A <strong>comfortable</strong> cotton t-shirt.</p>"
7270
7052
  default_variant_id: variant_gbHJdmfrXB
7271
7053
  thumbnail_url:
7272
7054
  tags: []
@@ -7282,30 +7064,37 @@ paths:
7282
7064
  price_list_id:
7283
7065
  original_price:
7284
7066
  - id: prod_gbHJdmfrXB
7285
- name: Product 637206
7286
- slug: product-637206
7067
+ name: Product 608331
7068
+ slug: product-608331
7287
7069
  meta_description:
7288
7070
  meta_keywords:
7289
7071
  variant_count: 0
7290
- available_on: '2025-03-21T19:52:58.019Z'
7291
- created_at: '2026-03-21T19:52:58.029Z'
7292
- updated_at: '2026-03-21T19:52:58.042Z'
7072
+ available_on: '2025-03-23T07:55:27.183Z'
7073
+ created_at: '2026-03-23T07:55:27.194Z'
7074
+ updated_at: '2026-03-23T07:55:27.210Z'
7293
7075
  purchasable: true
7294
7076
  in_stock: false
7295
7077
  backorderable: true
7296
7078
  available: true
7297
- description: |-
7298
- Rem quod sequi eum amet vero. Non exercitationem deleniti enim recusandae numquam illo quibusdam reprehenderit. Dolor eveniet vero porro expedita eligendi iste tenetur occaecati. Ipsam commodi culpa dolorum ratione.
7299
- Dicta possimus mollitia nemo cum voluptate hic magnam. Error veniam soluta earum aliquam ut iure totam. Perspiciatis quis placeat illo corporis. Provident minus commodi sunt esse assumenda amet voluptatem.
7300
- Eius itaque cumque optio id tempore excepturi sed. Quo natus suscipit soluta tenetur dolorum repellat debitis. Temporibus neque repellat dolore unde ratione facere dignissimos eum.
7301
- Qui dicta illum laborum optio corrupti fugiat excepturi eius. Assumenda harum at sed maxime doloremque fugit ratione quas. Maiores consectetur labore id sint eligendi ad vitae. Quis quibusdam accusamus quos autem iure recusandae molestias sint.
7302
- Animi blanditiis a tempore cumque dolores soluta. Aliquam sint architecto eos ullam. Eum ea sunt cum praesentium veniam ad sint.
7079
+ description: Illo veniam omnis quas nesciunt repudiandae molestiae
7080
+ quo. Enim dolorum odio velit optio. Ratione commodi exercitationem
7081
+ numquam excepturi similique. Architecto perferendis recusandae
7082
+ facere vel dicta quas. Alias officia quidem ipsam omnis molestiae.
7083
+ Necessitatibus nesciunt et voluptate impedit tempora fugit architecto
7084
+ harum. Molestiae ad labore fugiat quibusdam iusto. Neque eos enim
7085
+ molestias sed. Voluptas porro reiciendis quam aliquam illum accusamus
7086
+ illo. Doloremque eveniet autem incidunt corporis ipsum sequi.
7087
+ Cupiditate fugit iure maxime omnis. Autem totam natus magni labore
7088
+ hic. Iusto tempore ducimus sequi possimus rem. Voluptate eius
7089
+ molestiae magnam quas corporis omnis enim. Recusandae earum sunt
7090
+ cum illo perspiciatis. Ut natus maxime nemo delectus aperiam ipsam
7091
+ eveniet corrupti. Soluta sed culpa laborum libero ab ipsum harum
7092
+ vero.
7303
7093
  description_html: |-
7304
- Rem quod sequi eum amet vero. Non exercitationem deleniti enim recusandae numquam illo quibusdam reprehenderit. Dolor eveniet vero porro expedita eligendi iste tenetur occaecati. Ipsam commodi culpa dolorum ratione.
7305
- Dicta possimus mollitia nemo cum voluptate hic magnam. Error veniam soluta earum aliquam ut iure totam. Perspiciatis quis placeat illo corporis. Provident minus commodi sunt esse assumenda amet voluptatem.
7306
- Eius itaque cumque optio id tempore excepturi sed. Quo natus suscipit soluta tenetur dolorum repellat debitis. Temporibus neque repellat dolore unde ratione facere dignissimos eum.
7307
- Qui dicta illum laborum optio corrupti fugiat excepturi eius. Assumenda harum at sed maxime doloremque fugit ratione quas. Maiores consectetur labore id sint eligendi ad vitae. Quis quibusdam accusamus quos autem iure recusandae molestias sint.
7308
- Animi blanditiis a tempore cumque dolores soluta. Aliquam sint architecto eos ullam. Eum ea sunt cum praesentium veniam ad sint.
7094
+ Illo veniam omnis quas nesciunt repudiandae molestiae quo. Enim dolorum odio velit optio. Ratione commodi exercitationem numquam excepturi similique. Architecto perferendis recusandae facere vel dicta quas.
7095
+ Alias officia quidem ipsam omnis molestiae. Necessitatibus nesciunt et voluptate impedit tempora fugit architecto harum. Molestiae ad labore fugiat quibusdam iusto.
7096
+ Neque eos enim molestias sed. Voluptas porro reiciendis quam aliquam illum accusamus illo. Doloremque eveniet autem incidunt corporis ipsum sequi. Cupiditate fugit iure maxime omnis. Autem totam natus magni labore hic.
7097
+ Iusto tempore ducimus sequi possimus rem. Voluptate eius molestiae magnam quas corporis omnis enim. Recusandae earum sunt cum illo perspiciatis. Ut natus maxime nemo delectus aperiam ipsam eveniet corrupti. Soluta sed culpa laborum libero ab ipsum harum vero.
7309
7098
  default_variant_id: variant_EfhxLZ9ck8
7310
7099
  thumbnail_url:
7311
7100
  tags: []
@@ -7407,24 +7196,20 @@ paths:
7407
7196
  application/json:
7408
7197
  example:
7409
7198
  id: prod_UkLWZg9DAJ
7410
- name: Product 741426
7411
- slug: product-741426
7199
+ name: Product 713203
7200
+ slug: product-713203
7412
7201
  meta_description:
7413
7202
  meta_keywords:
7414
7203
  variant_count: 1
7415
- available_on: '2025-03-21T19:52:58.640Z'
7416
- created_at: '2026-03-21T19:52:58.656Z'
7417
- updated_at: '2026-03-21T19:52:58.693Z'
7204
+ available_on: '2025-03-23T07:55:27.792Z'
7205
+ created_at: '2026-03-23T07:55:27.806Z'
7206
+ updated_at: '2026-03-23T07:55:27.846Z'
7418
7207
  purchasable: true
7419
7208
  in_stock: false
7420
7209
  backorderable: true
7421
7210
  available: true
7422
- description: |-
7423
- Atque nemo suscipit accusamus sit blanditiis. Delectus eligendi voluptatem odit accusantium odio ducimus aliquam et. Itaque error laborum placeat molestiae tempora. Eius nulla dolore consequatur in iste officiis at nam. Fugiat ipsam quasi iusto delectus.
7424
- Vitae esse quos facere aut quae ex. Totam expedita accusantium neque excepturi. Adipisci nihil consequuntur laudantium dolorem perferendis. Ratione voluptas architecto soluta distinctio.
7425
- description_html: |-
7426
- Atque nemo suscipit accusamus sit blanditiis. Delectus eligendi voluptatem odit accusantium odio ducimus aliquam et. Itaque error laborum placeat molestiae tempora. Eius nulla dolore consequatur in iste officiis at nam. Fugiat ipsam quasi iusto delectus.
7427
- Vitae esse quos facere aut quae ex. Totam expedita accusantium neque excepturi. Adipisci nihil consequuntur laudantium dolorem perferendis. Ratione voluptas architecto soluta distinctio.
7211
+ description: A comfortable cotton t-shirt.
7212
+ description_html: "<p>A <strong>comfortable</strong> cotton t-shirt.</p>"
7428
7213
  default_variant_id: variant_gbHJdmfrXB
7429
7214
  thumbnail_url:
7430
7215
  tags: []
@@ -7642,9 +7427,9 @@ paths:
7642
7427
  application/json:
7643
7428
  example:
7644
7429
  id: cart_UkLWZg9DAJ
7645
- number: R345441825
7646
- token: aHXVytTy5zHcpYPEAxWsd1oaoarnMdhfqrD
7647
- email: martina.will@kohlerschroeder.info
7430
+ number: R444783865
7431
+ token: 1j3PRRbL9mrnuQBeWi65hNRMydkWLLnC77t
7432
+ email: latesha.vandervort@mckenziehickle.us
7648
7433
  customer_note:
7649
7434
  currency: USD
7650
7435
  locale: en
@@ -7665,8 +7450,8 @@ paths:
7665
7450
  display_total: "$110.00"
7666
7451
  delivery_total: '100.0'
7667
7452
  display_delivery_total: "$100.00"
7668
- created_at: '2026-03-21T19:53:00.753Z'
7669
- updated_at: '2026-03-21T19:53:00.802Z'
7453
+ created_at: '2026-03-23T07:55:29.868Z'
7454
+ updated_at: '2026-03-23T07:55:29.919Z'
7670
7455
  current_step: address
7671
7456
  completed_steps: []
7672
7457
  requirements: []
@@ -7677,8 +7462,8 @@ paths:
7677
7462
  variant_id: variant_UkLWZg9DAJ
7678
7463
  quantity: 1
7679
7464
  currency: USD
7680
- name: Product 1021211
7681
- slug: product-1021211
7465
+ name: Product 99496
7466
+ slug: product-99496
7682
7467
  options_text: ''
7683
7468
  price: '10.0'
7684
7469
  display_price: "$10.00"
@@ -7697,21 +7482,21 @@ paths:
7697
7482
  discounted_amount: '10.0'
7698
7483
  display_discounted_amount: "$10.00"
7699
7484
  display_compare_at_amount: "$0.00"
7700
- created_at: '2026-03-21T19:53:00.782Z'
7701
- updated_at: '2026-03-21T19:53:00.782Z'
7485
+ created_at: '2026-03-23T07:55:29.898Z'
7486
+ updated_at: '2026-03-23T07:55:29.898Z'
7702
7487
  compare_at_amount:
7703
7488
  thumbnail_url:
7704
7489
  option_values: []
7705
7490
  digital_links: []
7706
7491
  fulfillments:
7707
7492
  - id: ful_UkLWZg9DAJ
7708
- number: H95424626467
7493
+ number: H59677003567
7709
7494
  tracking: U10000
7710
7495
  tracking_url:
7711
7496
  cost: '100.0'
7712
7497
  display_cost: "$100.00"
7713
- created_at: '2026-03-21T19:53:00.786Z'
7714
- updated_at: '2026-03-21T19:53:00.799Z'
7498
+ created_at: '2026-03-23T07:55:29.903Z'
7499
+ updated_at: '2026-03-23T07:55:29.917Z'
7715
7500
  status: pending
7716
7501
  fulfillment_type: shipping
7717
7502
  fulfilled_at:
@@ -7725,14 +7510,14 @@ paths:
7725
7510
  code: UPS_GROUND
7726
7511
  stock_location:
7727
7512
  id: sloc_UkLWZg9DAJ
7728
- state_abbr: STATE_ABBR_262
7729
- name: Molly Bashirian
7513
+ state_abbr: STATE_ABBR_245
7514
+ name: Sunny Kuhn
7730
7515
  address1: 1600 Pennsylvania Ave NW
7731
7516
  city: Washington
7732
7517
  zipcode: '20500'
7733
7518
  country_iso: US
7734
7519
  country_name: United States of America
7735
- state_text: STATE_ABBR_262
7520
+ state_text: STATE_ABBR_245
7736
7521
  delivery_rates:
7737
7522
  - id: dr_UkLWZg9DAJ
7738
7523
  delivery_method_id: dm_UkLWZg9DAJ
@@ -7747,12 +7532,12 @@ paths:
7747
7532
  payments:
7748
7533
  - id: py_UkLWZg9DAJ
7749
7534
  payment_method_id: pm_UkLWZg9DAJ
7750
- response_code: 1-SC-20260321195301110961
7751
- number: P9X6JHI3
7535
+ response_code: 1-SC-20260323075530235200
7536
+ number: P6IXVEXS
7752
7537
  amount: '10.0'
7753
7538
  display_amount: "$10.00"
7754
- created_at: '2026-03-21T19:53:01.114Z'
7755
- updated_at: '2026-03-21T19:53:01.114Z'
7539
+ created_at: '2026-03-23T07:55:30.238Z'
7540
+ updated_at: '2026-03-23T07:55:30.238Z'
7756
7541
  status: checkout
7757
7542
  source_type: store_credit
7758
7543
  source_id: credit_UkLWZg9DAJ
@@ -7776,7 +7561,7 @@ paths:
7776
7561
  first_name: John
7777
7562
  last_name: Doe
7778
7563
  full_name: John Doe
7779
- address1: 244 Lovely Street
7564
+ address1: 227 Lovely Street
7780
7565
  address2: Northwest
7781
7566
  postal_code: '35005'
7782
7567
  city: Herndon
@@ -7784,16 +7569,18 @@ paths:
7784
7569
  company: Company
7785
7570
  country_name: United States of America
7786
7571
  country_iso: US
7787
- state_text: STATE_ABBR_264
7788
- state_abbr: STATE_ABBR_264
7572
+ state_text: STATE_ABBR_247
7573
+ state_abbr: STATE_ABBR_247
7789
7574
  quick_checkout: false
7790
- state_name: STATE_NAME_264
7575
+ is_default_billing: false
7576
+ is_default_shipping: false
7577
+ state_name: STATE_NAME_247
7791
7578
  shipping_address:
7792
7579
  id: addr_VqXmZF31wY
7793
7580
  first_name: John
7794
7581
  last_name: Doe
7795
7582
  full_name: John Doe
7796
- address1: 245 Lovely Street
7583
+ address1: 228 Lovely Street
7797
7584
  address2: Northwest
7798
7585
  postal_code: '35005'
7799
7586
  city: Herndon
@@ -7801,10 +7588,12 @@ paths:
7801
7588
  company: Company
7802
7589
  country_name: United States of America
7803
7590
  country_iso: US
7804
- state_text: STATE_ABBR_265
7805
- state_abbr: STATE_ABBR_265
7591
+ state_text: STATE_ABBR_248
7592
+ state_abbr: STATE_ABBR_248
7806
7593
  quick_checkout: false
7807
- state_name: STATE_NAME_265
7594
+ is_default_billing: false
7595
+ is_default_shipping: false
7596
+ state_name: STATE_NAME_248
7808
7597
  payment_methods:
7809
7598
  - id: pm_UkLWZg9DAJ
7810
7599
  name: Store Credit
@@ -7884,9 +7673,9 @@ paths:
7884
7673
  application/json:
7885
7674
  example:
7886
7675
  id: cart_UkLWZg9DAJ
7887
- number: R694945052
7888
- token: 8KUiMaceGNYHZUxRx3af7gQSma18yTw2voW
7889
- email: brain_tillman@vonvonrueden.name
7676
+ number: R909199733
7677
+ token: GNxQMH2foANBpoN8me3nTWVvTG64NgJxQKh
7678
+ email: elly_white@stehrswift.name
7890
7679
  customer_note:
7891
7680
  currency: USD
7892
7681
  locale: en
@@ -7907,8 +7696,8 @@ paths:
7907
7696
  display_total: "$110.00"
7908
7697
  delivery_total: '100.0'
7909
7698
  display_delivery_total: "$100.00"
7910
- created_at: '2026-03-21T19:53:02.286Z'
7911
- updated_at: '2026-03-21T19:53:02.337Z'
7699
+ created_at: '2026-03-23T07:55:31.427Z'
7700
+ updated_at: '2026-03-23T07:55:31.488Z'
7912
7701
  current_step: address
7913
7702
  completed_steps: []
7914
7703
  requirements:
@@ -7922,8 +7711,8 @@ paths:
7922
7711
  variant_id: variant_UkLWZg9DAJ
7923
7712
  quantity: 1
7924
7713
  currency: USD
7925
- name: Product 104345
7926
- slug: product-104345
7714
+ name: Product 1015341
7715
+ slug: product-1015341
7927
7716
  options_text: ''
7928
7717
  price: '10.0'
7929
7718
  display_price: "$10.00"
@@ -7942,21 +7731,21 @@ paths:
7942
7731
  discounted_amount: '10.0'
7943
7732
  display_discounted_amount: "$10.00"
7944
7733
  display_compare_at_amount: "$0.00"
7945
- created_at: '2026-03-21T19:53:02.316Z'
7946
- updated_at: '2026-03-21T19:53:02.316Z'
7734
+ created_at: '2026-03-23T07:55:31.465Z'
7735
+ updated_at: '2026-03-23T07:55:31.465Z'
7947
7736
  compare_at_amount:
7948
7737
  thumbnail_url:
7949
7738
  option_values: []
7950
7739
  digital_links: []
7951
7740
  fulfillments:
7952
7741
  - id: ful_UkLWZg9DAJ
7953
- number: H12836615966
7742
+ number: H09553879009
7954
7743
  tracking: U10000
7955
7744
  tracking_url:
7956
7745
  cost: '100.0'
7957
7746
  display_cost: "$100.00"
7958
- created_at: '2026-03-21T19:53:02.322Z'
7959
- updated_at: '2026-03-21T19:53:02.335Z'
7747
+ created_at: '2026-03-23T07:55:31.471Z'
7748
+ updated_at: '2026-03-23T07:55:31.486Z'
7960
7749
  status: pending
7961
7750
  fulfillment_type: shipping
7962
7751
  fulfilled_at:
@@ -7970,14 +7759,14 @@ paths:
7970
7759
  code: UPS_GROUND
7971
7760
  stock_location:
7972
7761
  id: sloc_UkLWZg9DAJ
7973
- state_abbr: STATE_ABBR_270
7974
- name: Kandice Donnelly
7762
+ state_abbr: STATE_ABBR_253
7763
+ name: Chanda Stark
7975
7764
  address1: 1600 Pennsylvania Ave NW
7976
7765
  city: Washington
7977
7766
  zipcode: '20500'
7978
7767
  country_iso: US
7979
7768
  country_name: United States of America
7980
- state_text: STATE_ABBR_270
7769
+ state_text: STATE_ABBR_253
7981
7770
  delivery_rates:
7982
7771
  - id: dr_UkLWZg9DAJ
7983
7772
  delivery_method_id: dm_UkLWZg9DAJ
@@ -7995,7 +7784,7 @@ paths:
7995
7784
  first_name: John
7996
7785
  last_name: Doe
7997
7786
  full_name: John Doe
7998
- address1: 252 Lovely Street
7787
+ address1: 235 Lovely Street
7999
7788
  address2: Northwest
8000
7789
  postal_code: '35005'
8001
7790
  city: Herndon
@@ -8003,16 +7792,18 @@ paths:
8003
7792
  company: Company
8004
7793
  country_name: United States of America
8005
7794
  country_iso: US
8006
- state_text: STATE_ABBR_272
8007
- state_abbr: STATE_ABBR_272
7795
+ state_text: STATE_ABBR_255
7796
+ state_abbr: STATE_ABBR_255
8008
7797
  quick_checkout: false
8009
- state_name: STATE_NAME_272
7798
+ is_default_billing: false
7799
+ is_default_shipping: false
7800
+ state_name: STATE_NAME_255
8010
7801
  shipping_address:
8011
7802
  id: addr_VqXmZF31wY
8012
7803
  first_name: John
8013
7804
  last_name: Doe
8014
7805
  full_name: John Doe
8015
- address1: 253 Lovely Street
7806
+ address1: 236 Lovely Street
8016
7807
  address2: Northwest
8017
7808
  postal_code: '35005'
8018
7809
  city: Herndon
@@ -8020,10 +7811,12 @@ paths:
8020
7811
  company: Company
8021
7812
  country_name: United States of America
8022
7813
  country_iso: US
8023
- state_text: STATE_ABBR_273
8024
- state_abbr: STATE_ABBR_273
7814
+ state_text: STATE_ABBR_256
7815
+ state_abbr: STATE_ABBR_256
8025
7816
  quick_checkout: false
8026
- state_name: STATE_NAME_273
7817
+ is_default_billing: false
7818
+ is_default_shipping: false
7819
+ state_name: STATE_NAME_256
8027
7820
  payment_methods: []
8028
7821
  schema:
8029
7822
  "$ref": "#/components/schemas/Cart"
@@ -8087,9 +7880,9 @@ paths:
8087
7880
  data:
8088
7881
  - id: wl_UkLWZg9DAJ
8089
7882
  name: My Wishlist
8090
- token: KR4eNvh2baWrufFQAfRXiSxu
8091
- created_at: '2026-03-21T19:53:02.899Z'
8092
- updated_at: '2026-03-21T19:53:02.899Z'
7883
+ token: 9XcGbzY1vVEp32e1uG9oSPko
7884
+ created_at: '2026-03-23T07:55:32.066Z'
7885
+ updated_at: '2026-03-23T07:55:32.066Z'
8093
7886
  is_default: false
8094
7887
  is_private: true
8095
7888
  meta:
@@ -8165,9 +7958,9 @@ paths:
8165
7958
  example:
8166
7959
  id: wl_gbHJdmfrXB
8167
7960
  name: Birthday Ideas
8168
- token: QtyxTCbvjJtfcPr9hBz9Sp2z
8169
- created_at: '2026-03-21T19:53:04.092Z'
8170
- updated_at: '2026-03-21T19:53:04.092Z'
7961
+ token: inmJKZ6hVhigSEKRNQBFRxDb
7962
+ created_at: '2026-03-23T07:55:33.271Z'
7963
+ updated_at: '2026-03-23T07:55:33.271Z'
8171
7964
  is_default: false
8172
7965
  is_private: true
8173
7966
  schema:
@@ -8263,9 +8056,9 @@ paths:
8263
8056
  example:
8264
8057
  id: wl_UkLWZg9DAJ
8265
8058
  name: My Wishlist
8266
- token: PAbPdmsriEWoZh9Tda66SkvS
8267
- created_at: '2026-03-21T19:53:05.198Z'
8268
- updated_at: '2026-03-21T19:53:05.198Z'
8059
+ token: kpKXg1Do4z4YVeFzQS66ZP5W
8060
+ created_at: '2026-03-23T07:55:34.428Z'
8061
+ updated_at: '2026-03-23T07:55:34.428Z'
8269
8062
  is_default: false
8270
8063
  is_private: true
8271
8064
  schema:
@@ -8327,9 +8120,9 @@ paths:
8327
8120
  example:
8328
8121
  id: wl_UkLWZg9DAJ
8329
8122
  name: Updated Name
8330
- token: iXE7pUE5yDteXqYHidrt4np3
8331
- created_at: '2026-03-21T19:53:06.356Z'
8332
- updated_at: '2026-03-21T19:53:06.415Z'
8123
+ token: Ce3SByaGSdZDLRofNENh221G
8124
+ created_at: '2026-03-23T07:55:35.674Z'
8125
+ updated_at: '2026-03-23T07:55:35.719Z'
8333
8126
  is_default: false
8334
8127
  is_private: true
8335
8128
  schema:
@@ -8441,17 +8234,17 @@ paths:
8441
8234
  variant_id: variant_gbHJdmfrXB
8442
8235
  wishlist_id: wl_UkLWZg9DAJ
8443
8236
  quantity: 1
8444
- created_at: '2026-03-21T19:53:07.625Z'
8445
- updated_at: '2026-03-21T19:53:07.625Z'
8237
+ created_at: '2026-03-23T07:55:36.906Z'
8238
+ updated_at: '2026-03-23T07:55:36.906Z'
8446
8239
  variant:
8447
8240
  id: variant_gbHJdmfrXB
8448
8241
  product_id: prod_gbHJdmfrXB
8449
- sku: SKU-124
8242
+ sku: SKU-121
8450
8243
  options_text: ''
8451
8244
  track_inventory: true
8452
8245
  media_count: 0
8453
- created_at: '2026-03-21T19:53:07.599Z'
8454
- updated_at: '2026-03-21T19:53:07.610Z'
8246
+ created_at: '2026-03-23T07:55:36.881Z'
8247
+ updated_at: '2026-03-23T07:55:36.891Z'
8455
8248
  thumbnail_url:
8456
8249
  purchasable: true
8457
8250
  in_stock: false
@@ -8549,50 +8342,45 @@ servers:
8549
8342
  default: localhost:3000
8550
8343
  tags:
8551
8344
  - name: Authentication
8552
- description: Customer authentication and registration
8553
- - name: Store
8554
- description: Store information and settings
8345
+ description: Customer authentication (login, logout, token refresh)
8555
8346
  - name: Product Catalog
8556
- description: Products, taxonomies, and categories
8557
- - name: Internationalization
8558
- description: Countries, currencies, and locales available in the store
8559
- - name: Cart
8347
+ description: Products and categories
8348
+ - name: Carts
8560
8349
  description: Shopping cart management
8561
- - name: Checkout
8562
- description: Checkout flow and order updates
8563
8350
  - name: Orders
8564
8351
  description: Order lookup
8565
8352
  - name: Customers
8566
8353
  description: Customer account, addresses, saved payment methods, and order history
8354
+ - name: Markets
8355
+ description: Markets, countries, currencies, and locales
8567
8356
  - name: Wishlists
8568
8357
  description: Customer wishlists
8569
8358
  - name: Digitals
8570
8359
  description: Digital product downloads
8571
- - name: Markets
8572
- description: Market information and resolution
8573
8360
  x-tagGroups:
8574
- - name: Store
8361
+ - name: Authentication
8575
8362
  tags:
8576
- - Store
8577
- - Internationalization
8578
- - Markets
8579
- - name: Catalog
8363
+ - Authentication
8364
+ - name: Product Catalog
8580
8365
  tags:
8581
8366
  - Product Catalog
8582
- - name: Cart
8583
- tags:
8584
- - Cart
8585
- - name: Checkout
8367
+ - name: Carts
8586
8368
  tags:
8587
- - Checkout
8369
+ - Carts
8588
8370
  - name: Orders
8589
8371
  tags:
8590
8372
  - Orders
8591
- - name: Customer
8373
+ - name: Customers
8592
8374
  tags:
8593
- - Authentication
8594
8375
  - Customers
8376
+ - name: Markets
8377
+ tags:
8378
+ - Markets
8379
+ - name: Wishlists
8380
+ tags:
8595
8381
  - Wishlists
8382
+ - name: Digitals
8383
+ tags:
8596
8384
  - Digitals
8597
8385
  components:
8598
8386
  securitySchemes:
@@ -8788,6 +8576,10 @@ components:
8788
8576
  nullable: true
8789
8577
  quick_checkout:
8790
8578
  type: boolean
8579
+ is_default_billing:
8580
+ type: boolean
8581
+ is_default_shipping:
8582
+ type: boolean
8791
8583
  state_name:
8792
8584
  type: string
8793
8585
  nullable: true
@@ -8807,6 +8599,8 @@ components:
8807
8599
  - state_text
8808
8600
  - state_abbr
8809
8601
  - quick_checkout
8602
+ - is_default_billing
8603
+ - is_default_shipping
8810
8604
  - state_name
8811
8605
  x-typelizer: true
8812
8606
  Base: