@spree/docs 0.1.2 → 0.1.3

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.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjY1OWIyYjQzLTFmNDEtNDEzYS05ZTlkLTI1Mzc1M2EzYTZjMyIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjEwNTYyfQ.poGP-jnPMvYtgQXzIMUMXJNbO2LY8LMyiZgcl8_JybY
594
+ refresh_token: 5jDFpiBni78DhDpbyi9FyBc9
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: Jami
599
+ last_name: Jones
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-22T19:16:02.579Z'
603
+ updated_at: '2026-03-22T19:16:02.579Z'
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.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjkwMzZkNGRhLWM0OGYtNDY1Yi1iY2I1LTIzMGU0YzZjMTdlMiIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjEwNTYzfQ.H94WTxsmTw2iM0scrc4FCt7V9qFj6TsAvQaifhRFP_Q
675
+ refresh_token: a6zPPCovvKqCDkXMhvrNZLgf
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: Elbert
680
+ last_name: Zemlak
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-22T19:16:03.946Z'
684
+ updated_at: '2026-03-22T19:16:03.946Z'
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: R990008696
800
+ token: MZvSPr8ZDUq4NxK9CzXcYopy7UfbJozEW54
801
+ email: vicky.weimann@howe.info
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-22T19:16:06.169Z'
823
+ updated_at: '2026-03-22T19:16:06.226Z'
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 27783
838
+ slug: product-27783
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-22T19:16:06.203Z'
858
+ updated_at: '2026-03-22T19:16:06.203Z'
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: H50046298351
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-22T19:16:06.211Z'
871
+ updated_at: '2026-03-22T19:16:06.224Z'
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: Isaiah Beahan
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: R434702360
946
+ token: JyQDfJ6pfMmF8VdbH5YwiijAdumTJYyuou8
947
+ email: vicky.weimann@howe.info
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-22T19:16:06.010Z'
969
+ updated_at: '2026-03-22T19:16:06.161Z'
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 18219
984
+ slug: product-18219
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-22T19:16:06.085Z'
1004
+ updated_at: '2026-03-22T19:16:06.085Z'
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: H70724719364
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-22T19:16:06.099Z'
1017
+ updated_at: '2026-03-22T19:16:06.157Z'
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: Isaiah Beahan
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: R880220196
1165
+ token: CSUSFzHfCgLaYkTBc2ShvbACzfEpnZB2nhS
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-22T19:16:06.719Z'
1188
+ updated_at: '2026-03-22T19:16:06.719Z'
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: R129866961
1297
+ token: u6gxSFEvcaTmMbLSbUvrXtJ2TcF9xxq5goc
1298
+ email: lilian@gulgowski.com
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-22T19:16:06.994Z'
1320
+ updated_at: '2026-03-22T19:16:07.050Z'
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 52782
1335
+ slug: product-52782
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-22T19:16:07.027Z'
1355
+ updated_at: '2026-03-22T19:16:07.027Z'
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: H66962448462
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-22T19:16:07.032Z'
1368
+ updated_at: '2026-03-22T19:16:07.048Z'
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: Ivonne Walker
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: R768412793
1522
+ token: pauL5JswoSx1dNhcmNWaxzpNqntQWASngUH
1523
+ email: horace_littel@price.info
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-22T19:16:07.688Z'
1545
+ updated_at: '2026-03-22T19:16:07.849Z'
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 63928
1562
+ slug: product-63928
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-22T19:16:07.732Z'
1582
+ updated_at: '2026-03-22T19:16:07.800Z'
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: H53355573443
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-22T19:16:07.817Z'
1595
+ updated_at: '2026-03-22T19:16:07.835Z'
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: Bree Grant
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: R690330483
1837
+ token: W9YzUbzbeUex96xA6joEvxLvPnUroQoLzWf
1838
+ email: corrinne.willms@harrisconn.co.uk
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-22T19:16:08.542Z'
1860
+ updated_at: '2026-03-22T19:16:08.644Z'
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 89123
1875
+ slug: product-89123
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-22T19:16:08.585Z'
1895
+ updated_at: '2026-03-22T19:16:08.585Z'
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: H24246584359
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-22T19:16:08.594Z'
1908
+ updated_at: '2026-03-22T19:16:08.636Z'
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: Shaneka Weissnat
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: R542662168
2047
+ email: yolando@johnstonwunsch.info
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-22T19:16:10.101Z'
2071
+ created_at: '2026-03-22T19:16:09.900Z'
2072
+ updated_at: '2026-03-22T19:16:10.101Z'
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 108959
2080
+ slug: product-108959
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-22T19:16:09.931Z'
2100
+ updated_at: '2026-03-22T19:16:10.104Z'
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: H44715804359
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-22T19:16:09.990Z'
2113
+ updated_at: '2026-03-22T19:16:10.094Z'
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: Megan Olson
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: P6SQHB3O
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-22T19:16:10.055Z'
2154
+ updated_at: '2026-03-22T19:16:10.077Z'
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-22T19:16:10.733Z'
2292
+ updated_at: '2026-03-22T19:16:10.788Z'
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-22T19:16:10.740Z'
2311
+ updated_at: '2026-03-22T19:16:10.787Z'
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-22T19:16:10.748Z'
2330
+ updated_at: '2026-03-22T19:16:10.753Z'
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-22T19:16:11.110Z'
2432
+ updated_at: '2026-03-22T19:16:11.147Z'
2434
2433
  parent_id: ctg_UkLWZg9DAJ
2435
2434
  description: ''
2436
2435
  description_html: ''
@@ -2557,30 +2556,39 @@ paths:
2557
2556
  example:
2558
2557
  data:
2559
2558
  - id: prod_UkLWZg9DAJ
2560
- name: Product 197180
2561
- slug: product-197180
2559
+ name: Product 194445
2560
+ slug: product-194445
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-22T19:16:11.619Z'
2565
+ created_at: '2026-03-22T19:16:11.637Z'
2566
+ updated_at: '2026-03-22T19:16:11.653Z'
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: Iusto tempore iure adipisci sequi omnis nemo dolore.
2572
+ Ipsam soluta ex ad eaque atque alias ea officiis. Reprehenderit
2573
+ nihil accusamus aliquid tempora architecto doloremque. Non expedita
2574
+ ipsum nam in sapiente laboriosam tempore consequuntur. Excepturi
2575
+ tempora debitis repudiandae numquam. Corrupti laborum totam laboriosam
2576
+ alias corporis reiciendis. Tempora nihil fuga amet excepturi esse.
2577
+ Possimus ullam nam perferendis fugiat aut hic sequi necessitatibus.
2578
+ Corrupti earum vero aperiam quos sequi. Dignissimos temporibus
2579
+ odit aliquid ratione tempora recusandae exercitationem. Deserunt
2580
+ sunt ullam deleniti placeat quam neque eveniet. Dolorum possimus
2581
+ ut doloremque quidem dolorem. Voluptate aliquid reiciendis ipsa
2582
+ corporis incidunt rerum dolor. Occaecati dolor perspiciatis laborum
2583
+ laudantium eveniet. Inventore fuga assumenda aspernatur nisi earum
2584
+ iusto et. Dicta quod nesciunt harum quibusdam. Iure beatae aut
2585
+ soluta placeat voluptatibus natus ducimus. Earum laboriosam iste
2586
+ eaque et voluptatem.
2578
2587
  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.
2588
+ Iusto tempore iure adipisci sequi omnis nemo dolore. Ipsam soluta ex ad eaque atque alias ea officiis. Reprehenderit nihil accusamus aliquid tempora architecto doloremque. Non expedita ipsum nam in sapiente laboriosam tempore consequuntur. Excepturi tempora debitis repudiandae numquam.
2589
+ Corrupti laborum totam laboriosam alias corporis reiciendis. Tempora nihil fuga amet excepturi esse. Possimus ullam nam perferendis fugiat aut hic sequi necessitatibus.
2590
+ Corrupti earum vero aperiam quos sequi. Dignissimos temporibus odit aliquid ratione tempora recusandae exercitationem. Deserunt sunt ullam deleniti placeat quam neque eveniet. Dolorum possimus ut doloremque quidem dolorem. Voluptate aliquid reiciendis ipsa corporis incidunt rerum dolor.
2591
+ Occaecati dolor perspiciatis laborum laudantium eveniet. Inventore fuga assumenda aspernatur nisi earum iusto et. Dicta quod nesciunt harum quibusdam. Iure beatae aut soluta placeat voluptatibus natus ducimus. Earum laboriosam iste eaque et voluptatem.
2584
2592
  default_variant_id: variant_UkLWZg9DAJ
2585
2593
  thumbnail_url:
2586
2594
  tags: []
@@ -2638,7 +2646,7 @@ paths:
2638
2646
  get:
2639
2647
  summary: List countries
2640
2648
  tags:
2641
- - Internationalization
2649
+ - Markets
2642
2650
  security:
2643
2651
  - api_key: []
2644
2652
  description: Returns countries available in the store. Use ?expand=market to
@@ -2676,7 +2684,7 @@ paths:
2676
2684
  example:
2677
2685
  data:
2678
2686
  - iso: DE
2679
- iso3: IS21
2687
+ iso3: IS18
2680
2688
  name: Germany
2681
2689
  states_required: false
2682
2690
  zipcode_required: true
@@ -2708,7 +2716,7 @@ paths:
2708
2716
  get:
2709
2717
  summary: Get a country
2710
2718
  tags:
2711
- - Internationalization
2719
+ - Markets
2712
2720
  security:
2713
2721
  - api_key: []
2714
2722
  description: Returns a single country by ISO code. Supports ?expand=states for
@@ -2846,9 +2854,9 @@ paths:
2846
2854
  application/json:
2847
2855
  example:
2848
2856
  id: cart_UkLWZg9DAJ
2849
- number: R129895913
2850
- token: 4s3sAML82Z3thSXTQew9vtt5qACcWw5Drzu
2851
- email: laquanda_pollich@morar.ca
2857
+ number: R111812114
2858
+ token: jArnxtk7otfbf1TmZrH7FSft9GJ5E6sHGNg
2859
+ email: jeri@pagac.biz
2852
2860
  customer_note:
2853
2861
  currency: USD
2854
2862
  locale: en
@@ -2869,8 +2877,8 @@ paths:
2869
2877
  display_total: "$110.00"
2870
2878
  delivery_total: '100.0'
2871
2879
  display_delivery_total: "$100.00"
2872
- created_at: '2026-03-21T19:52:19.942Z'
2873
- updated_at: '2026-03-21T19:52:20.050Z'
2880
+ created_at: '2026-03-22T19:16:13.503Z'
2881
+ updated_at: '2026-03-22T19:16:13.623Z'
2874
2882
  current_step: address
2875
2883
  completed_steps: []
2876
2884
  requirements: []
@@ -2881,8 +2889,8 @@ paths:
2881
2889
  variant_id: variant_UkLWZg9DAJ
2882
2890
  quantity: 1
2883
2891
  currency: USD
2884
- name: Product 233288
2885
- slug: product-233288
2892
+ name: Product 239007
2893
+ slug: product-239007
2886
2894
  options_text: ''
2887
2895
  price: '10.0'
2888
2896
  display_price: "$10.00"
@@ -2901,21 +2909,21 @@ paths:
2901
2909
  discounted_amount: '10.0'
2902
2910
  display_discounted_amount: "$10.00"
2903
2911
  display_compare_at_amount: "$0.00"
2904
- created_at: '2026-03-21T19:52:19.973Z'
2905
- updated_at: '2026-03-21T19:52:19.973Z'
2912
+ created_at: '2026-03-22T19:16:13.538Z'
2913
+ updated_at: '2026-03-22T19:16:13.538Z'
2906
2914
  compare_at_amount:
2907
2915
  thumbnail_url:
2908
2916
  option_values: []
2909
2917
  digital_links: []
2910
2918
  fulfillments:
2911
2919
  - id: ful_UkLWZg9DAJ
2912
- number: H64238468176
2920
+ number: H67163703191
2913
2921
  tracking: U10000
2914
2922
  tracking_url:
2915
2923
  cost: '100.0'
2916
2924
  display_cost: "$100.00"
2917
- created_at: '2026-03-21T19:52:19.980Z'
2918
- updated_at: '2026-03-21T19:52:19.993Z'
2925
+ created_at: '2026-03-22T19:16:13.545Z'
2926
+ updated_at: '2026-03-22T19:16:13.561Z'
2919
2927
  status: pending
2920
2928
  fulfillment_type: shipping
2921
2929
  fulfilled_at:
@@ -2929,14 +2937,14 @@ paths:
2929
2937
  code: UPS_GROUND
2930
2938
  stock_location:
2931
2939
  id: sloc_UkLWZg9DAJ
2932
- state_abbr: STATE_ABBR_85
2933
- name: Linn Watsica
2940
+ state_abbr: STATE_ABBR_80
2941
+ name: Judith Stokes
2934
2942
  address1: 1600 Pennsylvania Ave NW
2935
2943
  city: Washington
2936
2944
  zipcode: '20500'
2937
2945
  country_iso: US
2938
2946
  country_name: United States of America
2939
- state_text: STATE_ABBR_85
2947
+ state_text: STATE_ABBR_80
2940
2948
  delivery_rates:
2941
2949
  - id: dr_UkLWZg9DAJ
2942
2950
  delivery_method_id: dm_UkLWZg9DAJ
@@ -2951,12 +2959,12 @@ paths:
2951
2959
  payments:
2952
2960
  - id: py_UkLWZg9DAJ
2953
2961
  payment_method_id: pm_UkLWZg9DAJ
2954
- response_code: 1-SC-20260321195220042222
2955
- number: PRRMB0A5
2962
+ response_code: 1-SC-20260322191613614226
2963
+ number: P3WSGVVA
2956
2964
  amount: '50.0'
2957
2965
  display_amount: "$50.00"
2958
- created_at: '2026-03-21T19:52:20.044Z'
2959
- updated_at: '2026-03-21T19:52:20.044Z'
2966
+ created_at: '2026-03-22T19:16:13.616Z'
2967
+ updated_at: '2026-03-22T19:16:13.616Z'
2960
2968
  status: checkout
2961
2969
  source_type: store_credit
2962
2970
  source_id: credit_UkLWZg9DAJ
@@ -2980,7 +2988,7 @@ paths:
2980
2988
  first_name: John
2981
2989
  last_name: Doe
2982
2990
  full_name: John Doe
2983
- address1: 77 Lovely Street
2991
+ address1: 72 Lovely Street
2984
2992
  address2: Northwest
2985
2993
  postal_code: '35005'
2986
2994
  city: Herndon
@@ -2988,16 +2996,18 @@ paths:
2988
2996
  company: Company
2989
2997
  country_name: United States of America
2990
2998
  country_iso: US
2991
- state_text: STATE_ABBR_87
2992
- state_abbr: STATE_ABBR_87
2999
+ state_text: STATE_ABBR_82
3000
+ state_abbr: STATE_ABBR_82
2993
3001
  quick_checkout: false
2994
- state_name: STATE_NAME_87
3002
+ is_default_billing: false
3003
+ is_default_shipping: false
3004
+ state_name: STATE_NAME_82
2995
3005
  shipping_address:
2996
3006
  id: addr_VqXmZF31wY
2997
3007
  first_name: John
2998
3008
  last_name: Doe
2999
3009
  full_name: John Doe
3000
- address1: 78 Lovely Street
3010
+ address1: 73 Lovely Street
3001
3011
  address2: Northwest
3002
3012
  postal_code: '35005'
3003
3013
  city: Herndon
@@ -3005,10 +3015,12 @@ paths:
3005
3015
  company: Company
3006
3016
  country_name: United States of America
3007
3017
  country_iso: US
3008
- state_text: STATE_ABBR_88
3009
- state_abbr: STATE_ABBR_88
3018
+ state_text: STATE_ABBR_83
3019
+ state_abbr: STATE_ABBR_83
3010
3020
  quick_checkout: false
3011
- state_name: STATE_NAME_88
3021
+ is_default_billing: false
3022
+ is_default_shipping: false
3023
+ state_name: STATE_NAME_83
3012
3024
  payment_methods:
3013
3025
  - id: pm_UkLWZg9DAJ
3014
3026
  name: Store Credit
@@ -3100,9 +3112,9 @@ paths:
3100
3112
  application/json:
3101
3113
  example:
3102
3114
  id: cart_UkLWZg9DAJ
3103
- number: R632570151
3104
- token: o1kJ8zpaVsH8c4cnZueNPrCFK82aQ5iTKfz
3105
- email: novella@lockman.co.uk
3115
+ number: R351665324
3116
+ token: yr1PT18pHkfpR5N9iHSaYXToGPpVQACs2UA
3117
+ email: mitch.parisian@lubowitz.co.uk
3106
3118
  customer_note:
3107
3119
  currency: USD
3108
3120
  locale: en
@@ -3123,8 +3135,8 @@ paths:
3123
3135
  display_total: "$110.00"
3124
3136
  delivery_total: '100.0'
3125
3137
  display_delivery_total: "$100.00"
3126
- created_at: '2026-03-21T19:52:21.271Z'
3127
- updated_at: '2026-03-21T19:52:21.384Z'
3138
+ created_at: '2026-03-22T19:16:14.856Z'
3139
+ updated_at: '2026-03-22T19:16:15.010Z'
3128
3140
  current_step: address
3129
3141
  completed_steps: []
3130
3142
  requirements:
@@ -3138,8 +3150,8 @@ paths:
3138
3150
  variant_id: variant_UkLWZg9DAJ
3139
3151
  quantity: 1
3140
3152
  currency: USD
3141
- name: Product 255869
3142
- slug: product-255869
3153
+ name: Product 252616
3154
+ slug: product-252616
3143
3155
  options_text: ''
3144
3156
  price: '10.0'
3145
3157
  display_price: "$10.00"
@@ -3158,21 +3170,21 @@ paths:
3158
3170
  discounted_amount: '10.0'
3159
3171
  display_discounted_amount: "$10.00"
3160
3172
  display_compare_at_amount: "$0.00"
3161
- created_at: '2026-03-21T19:52:21.302Z'
3162
- updated_at: '2026-03-21T19:52:21.380Z'
3173
+ created_at: '2026-03-22T19:16:14.901Z'
3174
+ updated_at: '2026-03-22T19:16:15.004Z'
3163
3175
  compare_at_amount:
3164
3176
  thumbnail_url:
3165
3177
  option_values: []
3166
3178
  digital_links: []
3167
3179
  fulfillments:
3168
3180
  - id: ful_UkLWZg9DAJ
3169
- number: H25198638382
3181
+ number: H07525191421
3170
3182
  tracking: U10000
3171
3183
  tracking_url:
3172
3184
  cost: '100.0'
3173
3185
  display_cost: "$100.00"
3174
- created_at: '2026-03-21T19:52:21.309Z'
3175
- updated_at: '2026-03-21T19:52:21.324Z'
3186
+ created_at: '2026-03-22T19:16:14.914Z'
3187
+ updated_at: '2026-03-22T19:16:14.933Z'
3176
3188
  status: pending
3177
3189
  fulfillment_type: shipping
3178
3190
  fulfilled_at:
@@ -3186,14 +3198,14 @@ paths:
3186
3198
  code: UPS_GROUND
3187
3199
  stock_location:
3188
3200
  id: sloc_UkLWZg9DAJ
3189
- state_abbr: STATE_ABBR_93
3190
- name: Bessie Cronin
3201
+ state_abbr: STATE_ABBR_88
3202
+ name: Lakendra Ratke
3191
3203
  address1: 1600 Pennsylvania Ave NW
3192
3204
  city: Washington
3193
3205
  zipcode: '20500'
3194
3206
  country_iso: US
3195
3207
  country_name: United States of America
3196
- state_text: STATE_ABBR_93
3208
+ state_text: STATE_ABBR_88
3197
3209
  delivery_rates:
3198
3210
  - id: dr_UkLWZg9DAJ
3199
3211
  delivery_method_id: dm_UkLWZg9DAJ
@@ -3211,7 +3223,7 @@ paths:
3211
3223
  first_name: John
3212
3224
  last_name: Doe
3213
3225
  full_name: John Doe
3214
- address1: 85 Lovely Street
3226
+ address1: 80 Lovely Street
3215
3227
  address2: Northwest
3216
3228
  postal_code: '35005'
3217
3229
  city: Herndon
@@ -3219,16 +3231,18 @@ paths:
3219
3231
  company: Company
3220
3232
  country_name: United States of America
3221
3233
  country_iso: US
3222
- state_text: STATE_ABBR_95
3223
- state_abbr: STATE_ABBR_95
3234
+ state_text: STATE_ABBR_90
3235
+ state_abbr: STATE_ABBR_90
3224
3236
  quick_checkout: false
3225
- state_name: STATE_NAME_95
3237
+ is_default_billing: false
3238
+ is_default_shipping: false
3239
+ state_name: STATE_NAME_90
3226
3240
  shipping_address:
3227
3241
  id: addr_VqXmZF31wY
3228
3242
  first_name: John
3229
3243
  last_name: Doe
3230
3244
  full_name: John Doe
3231
- address1: 86 Lovely Street
3245
+ address1: 81 Lovely Street
3232
3246
  address2: Northwest
3233
3247
  postal_code: '35005'
3234
3248
  city: Herndon
@@ -3236,10 +3250,12 @@ paths:
3236
3250
  company: Company
3237
3251
  country_name: United States of America
3238
3252
  country_iso: US
3239
- state_text: STATE_ABBR_96
3240
- state_abbr: STATE_ABBR_96
3253
+ state_text: STATE_ABBR_91
3254
+ state_abbr: STATE_ABBR_91
3241
3255
  quick_checkout: false
3242
- state_name: STATE_NAME_96
3256
+ is_default_billing: false
3257
+ is_default_shipping: false
3258
+ state_name: STATE_NAME_91
3243
3259
  payment_methods: []
3244
3260
  schema:
3245
3261
  "$ref": "#/components/schemas/Cart"
@@ -3253,7 +3269,7 @@ paths:
3253
3269
  message: The coupon code you entered doesn't exist. Please try again.
3254
3270
  schema:
3255
3271
  "$ref": "#/components/schemas/ErrorResponse"
3256
- "/api/v3/store/customer/credit_cards":
3272
+ "/api/v3/store/customers/me/credit_cards":
3257
3273
  get:
3258
3274
  summary: List saved credit cards
3259
3275
  tags:
@@ -3348,7 +3364,7 @@ paths:
3348
3364
  message: Authentication required
3349
3365
  schema:
3350
3366
  "$ref": "#/components/schemas/ErrorResponse"
3351
- "/api/v3/store/customer/credit_cards/{id}":
3367
+ "/api/v3/store/customers/me/credit_cards/{id}":
3352
3368
  get:
3353
3369
  summary: Get a credit card
3354
3370
  tags:
@@ -3475,7 +3491,7 @@ paths:
3475
3491
  get:
3476
3492
  summary: List supported currencies
3477
3493
  tags:
3478
- - Internationalization
3494
+ - Markets
3479
3495
  security:
3480
3496
  - api_key: []
3481
3497
  description: Returns currencies supported by the store (derived from markets)
@@ -3536,7 +3552,7 @@ paths:
3536
3552
  message: Valid API key required
3537
3553
  schema:
3538
3554
  "$ref": "#/components/schemas/ErrorResponse"
3539
- "/api/v3/store/customer/password_resets":
3555
+ "/api/v3/store/customers/me/password_resets":
3540
3556
  post:
3541
3557
  summary: Request a password reset
3542
3558
  tags:
@@ -3608,7 +3624,7 @@ paths:
3608
3624
  link. Validated against the store's allowed origins.
3609
3625
  required:
3610
3626
  - email
3611
- "/api/v3/store/customer/password_resets/{token}":
3627
+ "/api/v3/store/customers/me/password_resets/{token}":
3612
3628
  patch:
3613
3629
  summary: Reset password with token
3614
3630
  tags:
@@ -3653,17 +3669,17 @@ paths:
3653
3669
  content:
3654
3670
  application/json:
3655
3671
  example:
3656
- token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6ImM2MjIyZDNhLTVmNzItNDZkMC04ZjNiLWM0NDU5YWFiNTRkMyIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MTI2MzQ2fQ.8EXPjFz79skAS-oQJx-SrHgOCo9NEUuFL_Szz90FNSw
3657
- refresh_token: nPNXQ6aUXSaWFjBvpYqvJ6wc
3672
+ token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjE3MzUwOGNlLWFlMTItNDc4MC1iOTE2LTI0NDBiMTNhZjhhMyIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjEwNTgwfQ.ZyIDnOmSuxWpMFBgE9nnb6RHhXU3aD9QMzmQsMe5_w0
3673
+ refresh_token: 692saDqDpnauiniHXzAzLbBv
3658
3674
  user:
3659
3675
  id: cus_UkLWZg9DAJ
3660
3676
  email: customer@example.com
3661
- first_name: Deloise
3662
- last_name: Stoltenberg
3677
+ first_name: Sima
3678
+ last_name: Hettinger
3663
3679
  phone:
3664
3680
  accepts_email_marketing: false
3665
- created_at: '2026-03-21T19:52:26.388Z'
3666
- updated_at: '2026-03-21T19:52:26.665Z'
3681
+ created_at: '2026-03-22T19:16:19.971Z'
3682
+ updated_at: '2026-03-22T19:16:20.245Z'
3667
3683
  addresses: []
3668
3684
  default_billing_address:
3669
3685
  default_shipping_address:
@@ -3708,11 +3724,11 @@ paths:
3708
3724
  required:
3709
3725
  - password
3710
3726
  - password_confirmation
3711
- "/api/v3/store/customer/orders":
3727
+ "/api/v3/store/customers/me/orders":
3712
3728
  get:
3713
3729
  summary: List orders
3714
3730
  tags:
3715
- - Customer
3731
+ - Customers
3716
3732
  security:
3717
3733
  - api_key: []
3718
3734
  bearer_auth: []
@@ -3751,8 +3767,8 @@ paths:
3751
3767
  example:
3752
3768
  data:
3753
3769
  - id: or_UkLWZg9DAJ
3754
- number: R449227428
3755
- email: leisha@zieme.biz
3770
+ number: R897541246
3771
+ email: porter.greenholt@kassulke.name
3756
3772
  customer_note:
3757
3773
  currency: USD
3758
3774
  locale: en
@@ -3775,17 +3791,17 @@ paths:
3775
3791
  display_delivery_total: "$100.00"
3776
3792
  fulfillment_status:
3777
3793
  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'
3794
+ completed_at: '2026-03-22T19:16:21.169Z'
3795
+ created_at: '2026-03-22T19:16:21.110Z'
3796
+ updated_at: '2026-03-22T19:16:21.168Z'
3781
3797
  discounts: []
3782
3798
  items:
3783
3799
  - id: li_UkLWZg9DAJ
3784
3800
  variant_id: variant_UkLWZg9DAJ
3785
3801
  quantity: 1
3786
3802
  currency: USD
3787
- name: Product 27272
3788
- slug: product-27272
3803
+ name: Product 279313
3804
+ slug: product-279313
3789
3805
  options_text: ''
3790
3806
  price: '10.0'
3791
3807
  display_price: "$10.00"
@@ -3804,21 +3820,21 @@ paths:
3804
3820
  discounted_amount: '10.0'
3805
3821
  display_discounted_amount: "$10.00"
3806
3822
  display_compare_at_amount: "$0.00"
3807
- created_at: '2026-03-21T19:52:27.814Z'
3808
- updated_at: '2026-03-21T19:52:27.814Z'
3823
+ created_at: '2026-03-22T19:16:21.146Z'
3824
+ updated_at: '2026-03-22T19:16:21.146Z'
3809
3825
  compare_at_amount:
3810
3826
  thumbnail_url:
3811
3827
  option_values: []
3812
3828
  digital_links: []
3813
3829
  fulfillments:
3814
3830
  - id: ful_UkLWZg9DAJ
3815
- number: H06729444803
3831
+ number: H07819924986
3816
3832
  tracking: U10000
3817
3833
  tracking_url:
3818
3834
  cost: '100.0'
3819
3835
  display_cost: "$100.00"
3820
- created_at: '2026-03-21T19:52:27.821Z'
3821
- updated_at: '2026-03-21T19:52:27.838Z'
3836
+ created_at: '2026-03-22T19:16:21.151Z'
3837
+ updated_at: '2026-03-22T19:16:21.166Z'
3822
3838
  status: pending
3823
3839
  fulfillment_type: shipping
3824
3840
  fulfilled_at:
@@ -3832,14 +3848,14 @@ paths:
3832
3848
  code: UPS_GROUND
3833
3849
  stock_location:
3834
3850
  id: sloc_UkLWZg9DAJ
3835
- state_abbr: STATE_ABBR_113
3836
- name: Palmira Kessler
3851
+ state_abbr: STATE_ABBR_108
3852
+ name: Beula Stark
3837
3853
  address1: 1600 Pennsylvania Ave NW
3838
3854
  city: Washington
3839
3855
  zipcode: '20500'
3840
3856
  country_iso: US
3841
3857
  country_name: United States of America
3842
- state_text: STATE_ABBR_113
3858
+ state_text: STATE_ABBR_108
3843
3859
  delivery_rates:
3844
3860
  - id: dr_gbHJdmfrXB
3845
3861
  delivery_method_id: dm_UkLWZg9DAJ
@@ -3857,7 +3873,7 @@ paths:
3857
3873
  first_name: John
3858
3874
  last_name: Doe
3859
3875
  full_name: John Doe
3860
- address1: 105 Lovely Street
3876
+ address1: 100 Lovely Street
3861
3877
  address2: Northwest
3862
3878
  postal_code: '35005'
3863
3879
  city: Herndon
@@ -3865,16 +3881,18 @@ paths:
3865
3881
  company: Company
3866
3882
  country_name: United States of America
3867
3883
  country_iso: US
3868
- state_text: STATE_ABBR_115
3869
- state_abbr: STATE_ABBR_115
3884
+ state_text: STATE_ABBR_110
3885
+ state_abbr: STATE_ABBR_110
3870
3886
  quick_checkout: false
3871
- state_name: STATE_NAME_115
3887
+ is_default_billing: false
3888
+ is_default_shipping: false
3889
+ state_name: STATE_NAME_110
3872
3890
  shipping_address:
3873
3891
  id: addr_VqXmZF31wY
3874
3892
  first_name: John
3875
3893
  last_name: Doe
3876
3894
  full_name: John Doe
3877
- address1: 106 Lovely Street
3895
+ address1: 101 Lovely Street
3878
3896
  address2: Northwest
3879
3897
  postal_code: '35005'
3880
3898
  city: Herndon
@@ -3882,10 +3900,12 @@ paths:
3882
3900
  company: Company
3883
3901
  country_name: United States of America
3884
3902
  country_iso: US
3885
- state_text: STATE_ABBR_116
3886
- state_abbr: STATE_ABBR_116
3903
+ state_text: STATE_ABBR_111
3904
+ state_abbr: STATE_ABBR_111
3887
3905
  quick_checkout: false
3888
- state_name: STATE_NAME_116
3906
+ is_default_billing: false
3907
+ is_default_shipping: false
3908
+ state_name: STATE_NAME_111
3889
3909
  meta:
3890
3910
  page: 1
3891
3911
  limit: 25
@@ -3906,11 +3926,11 @@ paths:
3906
3926
  message: Authentication required
3907
3927
  schema:
3908
3928
  "$ref": "#/components/schemas/ErrorResponse"
3909
- "/api/v3/store/customer/orders/{id}":
3929
+ "/api/v3/store/customers/me/orders/{id}":
3910
3930
  get:
3911
3931
  summary: Get an order
3912
3932
  tags:
3913
- - Customer
3933
+ - Customers
3914
3934
  security:
3915
3935
  - api_key: []
3916
3936
  bearer_auth: []
@@ -3953,8 +3973,8 @@ paths:
3953
3973
  application/json:
3954
3974
  example:
3955
3975
  id: or_UkLWZg9DAJ
3956
- number: R012712733
3957
- email: rebeca.kunze@gerhold.com
3976
+ number: R991262010
3977
+ email: gale@becker.us
3958
3978
  customer_note:
3959
3979
  currency: USD
3960
3980
  locale: en
@@ -3977,17 +3997,17 @@ paths:
3977
3997
  display_delivery_total: "$100.00"
3978
3998
  fulfillment_status:
3979
3999
  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'
4000
+ completed_at: '2026-03-22T19:16:21.858Z'
4001
+ created_at: '2026-03-22T19:16:21.803Z'
4002
+ updated_at: '2026-03-22T19:16:21.858Z'
3983
4003
  discounts: []
3984
4004
  items:
3985
4005
  - id: li_UkLWZg9DAJ
3986
4006
  variant_id: variant_UkLWZg9DAJ
3987
4007
  quantity: 1
3988
4008
  currency: USD
3989
- name: Product 293542
3990
- slug: product-293542
4009
+ name: Product 294135
4010
+ slug: product-294135
3991
4011
  options_text: ''
3992
4012
  price: '10.0'
3993
4013
  display_price: "$10.00"
@@ -4006,21 +4026,21 @@ paths:
4006
4026
  discounted_amount: '10.0'
4007
4027
  display_discounted_amount: "$10.00"
4008
4028
  display_compare_at_amount: "$0.00"
4009
- created_at: '2026-03-21T19:52:28.510Z'
4010
- updated_at: '2026-03-21T19:52:28.510Z'
4029
+ created_at: '2026-03-22T19:16:21.834Z'
4030
+ updated_at: '2026-03-22T19:16:21.834Z'
4011
4031
  compare_at_amount:
4012
4032
  thumbnail_url:
4013
4033
  option_values: []
4014
4034
  digital_links: []
4015
4035
  fulfillments:
4016
4036
  - id: ful_UkLWZg9DAJ
4017
- number: H83789468675
4037
+ number: H30965585470
4018
4038
  tracking: U10000
4019
4039
  tracking_url:
4020
4040
  cost: '100.0'
4021
4041
  display_cost: "$100.00"
4022
- created_at: '2026-03-21T19:52:28.516Z'
4023
- updated_at: '2026-03-21T19:52:28.530Z'
4042
+ created_at: '2026-03-22T19:16:21.839Z'
4043
+ updated_at: '2026-03-22T19:16:21.855Z'
4024
4044
  status: pending
4025
4045
  fulfillment_type: shipping
4026
4046
  fulfilled_at:
@@ -4034,14 +4054,14 @@ paths:
4034
4054
  code: UPS_GROUND
4035
4055
  stock_location:
4036
4056
  id: sloc_UkLWZg9DAJ
4037
- state_abbr: STATE_ABBR_119
4038
- name: Heike Hirthe
4057
+ state_abbr: STATE_ABBR_114
4058
+ name: Lashonda Brekke
4039
4059
  address1: 1600 Pennsylvania Ave NW
4040
4060
  city: Washington
4041
4061
  zipcode: '20500'
4042
4062
  country_iso: US
4043
4063
  country_name: United States of America
4044
- state_text: STATE_ABBR_119
4064
+ state_text: STATE_ABBR_114
4045
4065
  delivery_rates:
4046
4066
  - id: dr_gbHJdmfrXB
4047
4067
  delivery_method_id: dm_UkLWZg9DAJ
@@ -4059,7 +4079,7 @@ paths:
4059
4079
  first_name: John
4060
4080
  last_name: Doe
4061
4081
  full_name: John Doe
4062
- address1: 111 Lovely Street
4082
+ address1: 106 Lovely Street
4063
4083
  address2: Northwest
4064
4084
  postal_code: '35005'
4065
4085
  city: Herndon
@@ -4067,16 +4087,18 @@ paths:
4067
4087
  company: Company
4068
4088
  country_name: United States of America
4069
4089
  country_iso: US
4070
- state_text: STATE_ABBR_121
4071
- state_abbr: STATE_ABBR_121
4090
+ state_text: STATE_ABBR_116
4091
+ state_abbr: STATE_ABBR_116
4072
4092
  quick_checkout: false
4073
- state_name: STATE_NAME_121
4093
+ is_default_billing: false
4094
+ is_default_shipping: false
4095
+ state_name: STATE_NAME_116
4074
4096
  shipping_address:
4075
4097
  id: addr_VqXmZF31wY
4076
4098
  first_name: John
4077
4099
  last_name: Doe
4078
4100
  full_name: John Doe
4079
- address1: 112 Lovely Street
4101
+ address1: 107 Lovely Street
4080
4102
  address2: Northwest
4081
4103
  postal_code: '35005'
4082
4104
  city: Herndon
@@ -4084,10 +4106,12 @@ paths:
4084
4106
  company: Company
4085
4107
  country_name: United States of America
4086
4108
  country_iso: US
4087
- state_text: STATE_ABBR_122
4088
- state_abbr: STATE_ABBR_122
4109
+ state_text: STATE_ABBR_117
4110
+ state_abbr: STATE_ABBR_117
4089
4111
  quick_checkout: false
4090
- state_name: STATE_NAME_122
4112
+ is_default_billing: false
4113
+ is_default_shipping: false
4114
+ state_name: STATE_NAME_117
4091
4115
  schema:
4092
4116
  "$ref": "#/components/schemas/Order"
4093
4117
  '404':
@@ -4141,8 +4165,8 @@ paths:
4141
4165
  content:
4142
4166
  application/json:
4143
4167
  example:
4144
- token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjQzNDBlNWY4LTliY2EtNDZjOC04MzQzLWEwMmZmM2M3YWE0ZCIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MTI2MzQ5fQ.ze6KFsGdACuA5RKGLBmaBHuqpYlXEvIaEjbyoHYWhq0
4145
- refresh_token: UDubndqj55GJAkKwnkUcgboe
4168
+ token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6Ijg5OGIyNjJiLTk3N2UtNGNiMy04MDFiLWY1NjQ3NjcxNWNmYSIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjEwNTgzfQ.olTx1W7wAbh052GzXI4hJCNKsGQcruOczney544Bz84
4169
+ refresh_token: rar85njfJxzaksBzx851gCR4
4146
4170
  user:
4147
4171
  id: cus_UkLWZg9DAJ
4148
4172
  email: newuser@example.com
@@ -4150,8 +4174,8 @@ paths:
4150
4174
  last_name: Doe
4151
4175
  phone: "+1234567890"
4152
4176
  accepts_email_marketing: true
4153
- created_at: '2026-03-21T19:52:29.768Z'
4154
- updated_at: '2026-03-21T19:52:29.768Z'
4177
+ created_at: '2026-03-22T19:16:23.052Z'
4178
+ updated_at: '2026-03-22T19:16:23.052Z'
4155
4179
  addresses: []
4156
4180
  default_billing_address:
4157
4181
  default_shipping_address:
@@ -4206,7 +4230,7 @@ paths:
4206
4230
  required:
4207
4231
  - email
4208
4232
  - password
4209
- "/api/v3/store/customer":
4233
+ "/api/v3/store/customers/me":
4210
4234
  get:
4211
4235
  summary: Get current customer profile
4212
4236
  tags:
@@ -4255,19 +4279,19 @@ paths:
4255
4279
  application/json:
4256
4280
  example:
4257
4281
  id: cus_UkLWZg9DAJ
4258
- email: sofia@beatty.biz
4259
- first_name: Tu
4260
- last_name: Koss
4282
+ email: edie@watsicaabbott.co.uk
4283
+ first_name: Suellen
4284
+ last_name: Kohler
4261
4285
  phone: 555-555-0199
4262
4286
  accepts_email_marketing: false
4263
- created_at: '2026-03-21T19:52:30.366Z'
4264
- updated_at: '2026-03-21T19:52:30.636Z'
4287
+ created_at: '2026-03-22T19:16:23.617Z'
4288
+ updated_at: '2026-03-22T19:16:23.889Z'
4265
4289
  addresses:
4266
4290
  - id: addr_gbHJdmfrXB
4267
4291
  first_name: John
4268
4292
  last_name: Doe
4269
4293
  full_name: John Doe
4270
- address1: 118 Lovely Street
4294
+ address1: 113 Lovely Street
4271
4295
  address2: Northwest
4272
4296
  postal_code: '35005'
4273
4297
  city: Herndon
@@ -4275,15 +4299,17 @@ paths:
4275
4299
  company: Company
4276
4300
  country_name: United States of America
4277
4301
  country_iso: US
4278
- state_text: STATE_ABBR_128
4279
- state_abbr: STATE_ABBR_128
4302
+ state_text: STATE_ABBR_123
4303
+ state_abbr: STATE_ABBR_123
4280
4304
  quick_checkout: false
4281
- state_name: STATE_NAME_128
4305
+ is_default_billing: true
4306
+ is_default_shipping: false
4307
+ state_name: STATE_NAME_123
4282
4308
  - id: addr_UkLWZg9DAJ
4283
4309
  first_name: John
4284
4310
  last_name: Doe
4285
4311
  full_name: John Doe
4286
- address1: 117 Lovely Street
4312
+ address1: 112 Lovely Street
4287
4313
  address2: Northwest
4288
4314
  postal_code: '35005'
4289
4315
  city: Herndon
@@ -4291,16 +4317,18 @@ paths:
4291
4317
  company: Company
4292
4318
  country_name: United States of America
4293
4319
  country_iso: US
4294
- state_text: STATE_ABBR_127
4295
- state_abbr: STATE_ABBR_127
4320
+ state_text: STATE_ABBR_122
4321
+ state_abbr: STATE_ABBR_122
4296
4322
  quick_checkout: false
4297
- state_name: STATE_NAME_127
4323
+ is_default_billing: false
4324
+ is_default_shipping: true
4325
+ state_name: STATE_NAME_122
4298
4326
  default_billing_address:
4299
4327
  id: addr_gbHJdmfrXB
4300
4328
  first_name: John
4301
4329
  last_name: Doe
4302
4330
  full_name: John Doe
4303
- address1: 118 Lovely Street
4331
+ address1: 113 Lovely Street
4304
4332
  address2: Northwest
4305
4333
  postal_code: '35005'
4306
4334
  city: Herndon
@@ -4308,16 +4336,18 @@ paths:
4308
4336
  company: Company
4309
4337
  country_name: United States of America
4310
4338
  country_iso: US
4311
- state_text: STATE_ABBR_128
4312
- state_abbr: STATE_ABBR_128
4339
+ state_text: STATE_ABBR_123
4340
+ state_abbr: STATE_ABBR_123
4313
4341
  quick_checkout: false
4314
- state_name: STATE_NAME_128
4342
+ is_default_billing: true
4343
+ is_default_shipping: false
4344
+ state_name: STATE_NAME_123
4315
4345
  default_shipping_address:
4316
4346
  id: addr_UkLWZg9DAJ
4317
4347
  first_name: John
4318
4348
  last_name: Doe
4319
4349
  full_name: John Doe
4320
- address1: 117 Lovely Street
4350
+ address1: 112 Lovely Street
4321
4351
  address2: Northwest
4322
4352
  postal_code: '35005'
4323
4353
  city: Herndon
@@ -4325,10 +4355,12 @@ paths:
4325
4355
  company: Company
4326
4356
  country_name: United States of America
4327
4357
  country_iso: US
4328
- state_text: STATE_ABBR_127
4329
- state_abbr: STATE_ABBR_127
4358
+ state_text: STATE_ABBR_122
4359
+ state_abbr: STATE_ABBR_122
4330
4360
  quick_checkout: false
4331
- state_name: STATE_NAME_127
4361
+ is_default_billing: false
4362
+ is_default_shipping: true
4363
+ state_name: STATE_NAME_122
4332
4364
  schema:
4333
4365
  "$ref": "#/components/schemas/Customer"
4334
4366
  '401':
@@ -4385,19 +4417,19 @@ paths:
4385
4417
  application/json:
4386
4418
  example:
4387
4419
  id: cus_UkLWZg9DAJ
4388
- email: inocencia@lednerdibbert.com
4420
+ email: margie_predovic@lynch.biz
4389
4421
  first_name: Updated
4390
4422
  last_name: Name
4391
4423
  phone: 555-555-0199
4392
4424
  accepts_email_marketing: false
4393
- created_at: '2026-03-21T19:52:30.929Z'
4394
- updated_at: '2026-03-21T19:52:31.268Z'
4425
+ created_at: '2026-03-22T19:16:24.180Z'
4426
+ updated_at: '2026-03-22T19:16:24.459Z'
4395
4427
  addresses:
4396
4428
  - id: addr_gbHJdmfrXB
4397
4429
  first_name: John
4398
4430
  last_name: Doe
4399
4431
  full_name: John Doe
4400
- address1: 120 Lovely Street
4432
+ address1: 115 Lovely Street
4401
4433
  address2: Northwest
4402
4434
  postal_code: '35005'
4403
4435
  city: Herndon
@@ -4405,15 +4437,17 @@ paths:
4405
4437
  company: Company
4406
4438
  country_name: United States of America
4407
4439
  country_iso: US
4408
- state_text: STATE_ABBR_130
4409
- state_abbr: STATE_ABBR_130
4440
+ state_text: STATE_ABBR_125
4441
+ state_abbr: STATE_ABBR_125
4410
4442
  quick_checkout: false
4411
- state_name: STATE_NAME_130
4443
+ is_default_billing: true
4444
+ is_default_shipping: false
4445
+ state_name: STATE_NAME_125
4412
4446
  - id: addr_UkLWZg9DAJ
4413
4447
  first_name: John
4414
4448
  last_name: Doe
4415
4449
  full_name: John Doe
4416
- address1: 119 Lovely Street
4450
+ address1: 114 Lovely Street
4417
4451
  address2: Northwest
4418
4452
  postal_code: '35005'
4419
4453
  city: Herndon
@@ -4421,16 +4455,18 @@ paths:
4421
4455
  company: Company
4422
4456
  country_name: United States of America
4423
4457
  country_iso: US
4424
- state_text: STATE_ABBR_129
4425
- state_abbr: STATE_ABBR_129
4458
+ state_text: STATE_ABBR_124
4459
+ state_abbr: STATE_ABBR_124
4426
4460
  quick_checkout: false
4427
- state_name: STATE_NAME_129
4461
+ is_default_billing: false
4462
+ is_default_shipping: true
4463
+ state_name: STATE_NAME_124
4428
4464
  default_billing_address:
4429
4465
  id: addr_gbHJdmfrXB
4430
4466
  first_name: John
4431
4467
  last_name: Doe
4432
4468
  full_name: John Doe
4433
- address1: 120 Lovely Street
4469
+ address1: 115 Lovely Street
4434
4470
  address2: Northwest
4435
4471
  postal_code: '35005'
4436
4472
  city: Herndon
@@ -4438,16 +4474,18 @@ paths:
4438
4474
  company: Company
4439
4475
  country_name: United States of America
4440
4476
  country_iso: US
4441
- state_text: STATE_ABBR_130
4442
- state_abbr: STATE_ABBR_130
4477
+ state_text: STATE_ABBR_125
4478
+ state_abbr: STATE_ABBR_125
4443
4479
  quick_checkout: false
4444
- state_name: STATE_NAME_130
4480
+ is_default_billing: true
4481
+ is_default_shipping: false
4482
+ state_name: STATE_NAME_125
4445
4483
  default_shipping_address:
4446
4484
  id: addr_UkLWZg9DAJ
4447
4485
  first_name: John
4448
4486
  last_name: Doe
4449
4487
  full_name: John Doe
4450
- address1: 119 Lovely Street
4488
+ address1: 114 Lovely Street
4451
4489
  address2: Northwest
4452
4490
  postal_code: '35005'
4453
4491
  city: Herndon
@@ -4455,10 +4493,12 @@ paths:
4455
4493
  company: Company
4456
4494
  country_name: United States of America
4457
4495
  country_iso: US
4458
- state_text: STATE_ABBR_129
4459
- state_abbr: STATE_ABBR_129
4496
+ state_text: STATE_ABBR_124
4497
+ state_abbr: STATE_ABBR_124
4460
4498
  quick_checkout: false
4461
- state_name: STATE_NAME_129
4499
+ is_default_billing: false
4500
+ is_default_shipping: true
4501
+ state_name: STATE_NAME_124
4462
4502
  schema:
4463
4503
  "$ref": "#/components/schemas/Customer"
4464
4504
  '422':
@@ -4556,101 +4596,6 @@ paths:
4556
4596
  application/octet-stream:
4557
4597
  schema:
4558
4598
  "$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
4599
  "/api/v3/store/carts/{cart_id}/fulfillments/{id}":
4655
4600
  patch:
4656
4601
  summary: Select delivery rate for fulfillment
@@ -4713,9 +4658,9 @@ paths:
4713
4658
  application/json:
4714
4659
  example:
4715
4660
  id: cart_UkLWZg9DAJ
4716
- number: R154639428
4717
- token: LSLQsNsEP8Rxe15rdW7ZTCr9TkVFgbM3jy1
4718
- email: annabel@stark.biz
4661
+ number: R014438685
4662
+ token: xkXdxfEeNpKBjt4YhcBRpyMHohPX52SRfuC
4663
+ email: cleopatra@mosciski.info
4719
4664
  customer_note:
4720
4665
  currency: USD
4721
4666
  locale: en
@@ -4736,8 +4681,8 @@ paths:
4736
4681
  display_total: "$110.00"
4737
4682
  delivery_total: '100.0'
4738
4683
  display_delivery_total: "$100.00"
4739
- created_at: '2026-03-21T19:52:35.792Z'
4740
- updated_at: '2026-03-21T19:52:35.887Z'
4684
+ created_at: '2026-03-22T19:16:27.505Z'
4685
+ updated_at: '2026-03-22T19:16:27.594Z'
4741
4686
  current_step: payment
4742
4687
  completed_steps:
4743
4688
  - address
@@ -4753,8 +4698,8 @@ paths:
4753
4698
  variant_id: variant_UkLWZg9DAJ
4754
4699
  quantity: 1
4755
4700
  currency: USD
4756
- name: Product 389431
4757
- slug: product-389431
4701
+ name: Product 372368
4702
+ slug: product-372368
4758
4703
  options_text: ''
4759
4704
  price: '10.0'
4760
4705
  display_price: "$10.00"
@@ -4773,21 +4718,21 @@ paths:
4773
4718
  discounted_amount: '10.0'
4774
4719
  display_discounted_amount: "$10.00"
4775
4720
  display_compare_at_amount: "$0.00"
4776
- created_at: '2026-03-21T19:52:35.825Z'
4777
- updated_at: '2026-03-21T19:52:35.825Z'
4721
+ created_at: '2026-03-22T19:16:27.534Z'
4722
+ updated_at: '2026-03-22T19:16:27.534Z'
4778
4723
  compare_at_amount:
4779
4724
  thumbnail_url:
4780
4725
  option_values: []
4781
4726
  digital_links: []
4782
4727
  fulfillments:
4783
4728
  - id: ful_UkLWZg9DAJ
4784
- number: H52902896694
4729
+ number: H58856334147
4785
4730
  tracking: U10000
4786
4731
  tracking_url:
4787
4732
  cost: '100.0'
4788
4733
  display_cost: "$100.00"
4789
- created_at: '2026-03-21T19:52:35.831Z'
4790
- updated_at: '2026-03-21T19:52:35.868Z'
4734
+ created_at: '2026-03-22T19:16:27.540Z'
4735
+ updated_at: '2026-03-22T19:16:27.578Z'
4791
4736
  status: pending
4792
4737
  fulfillment_type: shipping
4793
4738
  fulfilled_at:
@@ -4801,14 +4746,14 @@ paths:
4801
4746
  code: UPS_GROUND
4802
4747
  stock_location:
4803
4748
  id: sloc_UkLWZg9DAJ
4804
- state_abbr: STATE_ABBR_149
4805
- name: Brock Legros
4749
+ state_abbr: STATE_ABBR_140
4750
+ name: Latonya Bahringer
4806
4751
  address1: 1600 Pennsylvania Ave NW
4807
4752
  city: Washington
4808
4753
  zipcode: '20500'
4809
4754
  country_iso: US
4810
4755
  country_name: United States of America
4811
- state_text: STATE_ABBR_149
4756
+ state_text: STATE_ABBR_140
4812
4757
  delivery_rates:
4813
4758
  - id: dr_UkLWZg9DAJ
4814
4759
  delivery_method_id: dm_UkLWZg9DAJ
@@ -4826,7 +4771,7 @@ paths:
4826
4771
  first_name: John
4827
4772
  last_name: Doe
4828
4773
  full_name: John Doe
4829
- address1: 141 Lovely Street
4774
+ address1: 132 Lovely Street
4830
4775
  address2: Northwest
4831
4776
  postal_code: '35005'
4832
4777
  city: Herndon
@@ -4834,16 +4779,18 @@ paths:
4834
4779
  company: Company
4835
4780
  country_name: United States of America
4836
4781
  country_iso: US
4837
- state_text: STATE_ABBR_151
4838
- state_abbr: STATE_ABBR_151
4782
+ state_text: STATE_ABBR_142
4783
+ state_abbr: STATE_ABBR_142
4839
4784
  quick_checkout: false
4840
- state_name: STATE_NAME_151
4785
+ is_default_billing: false
4786
+ is_default_shipping: false
4787
+ state_name: STATE_NAME_142
4841
4788
  shipping_address:
4842
4789
  id: addr_VqXmZF31wY
4843
4790
  first_name: John
4844
4791
  last_name: Doe
4845
4792
  full_name: John Doe
4846
- address1: 142 Lovely Street
4793
+ address1: 133 Lovely Street
4847
4794
  address2: Northwest
4848
4795
  postal_code: '35005'
4849
4796
  city: Herndon
@@ -4851,10 +4798,12 @@ paths:
4851
4798
  company: Company
4852
4799
  country_name: United States of America
4853
4800
  country_iso: US
4854
- state_text: STATE_ABBR_152
4855
- state_abbr: STATE_ABBR_152
4801
+ state_text: STATE_ABBR_143
4802
+ state_abbr: STATE_ABBR_143
4856
4803
  quick_checkout: false
4857
- state_name: STATE_NAME_152
4804
+ is_default_billing: false
4805
+ is_default_shipping: false
4806
+ state_name: STATE_NAME_143
4858
4807
  payment_methods: []
4859
4808
  schema:
4860
4809
  "$ref": "#/components/schemas/Cart"
@@ -4880,7 +4829,7 @@ paths:
4880
4829
  description: Delivery rate ID to select
4881
4830
  required:
4882
4831
  - selected_delivery_rate_id
4883
- "/api/v3/store/customer/gift_cards":
4832
+ "/api/v3/store/customers/me/gift_cards":
4884
4833
  get:
4885
4834
  summary: List gift cards
4886
4835
  tags:
@@ -4939,7 +4888,7 @@ paths:
4939
4888
  example:
4940
4889
  data:
4941
4890
  - id: gc_UkLWZg9DAJ
4942
- code: BFC2B760667ECF14
4891
+ code: 5CB68B2034F86336
4943
4892
  status: active
4944
4893
  currency: USD
4945
4894
  amount: '10.0'
@@ -4953,8 +4902,8 @@ paths:
4953
4902
  redeemed_at:
4954
4903
  expired: false
4955
4904
  active: true
4956
- created_at: '2026-03-21T19:52:37.204Z'
4957
- updated_at: '2026-03-21T19:52:37.204Z'
4905
+ created_at: '2026-03-22T19:16:28.755Z'
4906
+ updated_at: '2026-03-22T19:16:28.755Z'
4958
4907
  meta:
4959
4908
  page: 1
4960
4909
  limit: 25
@@ -4984,7 +4933,7 @@ paths:
4984
4933
  message: Authentication required
4985
4934
  schema:
4986
4935
  "$ref": "#/components/schemas/ErrorResponse"
4987
- "/api/v3/store/customer/gift_cards/{id}":
4936
+ "/api/v3/store/customers/me/gift_cards/{id}":
4988
4937
  get:
4989
4938
  summary: Get a gift card
4990
4939
  tags:
@@ -5037,7 +4986,7 @@ paths:
5037
4986
  application/json:
5038
4987
  example:
5039
4988
  id: gc_UkLWZg9DAJ
5040
- code: 576DFE86E060D6CE
4989
+ code: AA7D29155A37CC34
5041
4990
  status: active
5042
4991
  currency: USD
5043
4992
  amount: '10.0'
@@ -5051,8 +5000,8 @@ paths:
5051
5000
  redeemed_at:
5052
5001
  expired: false
5053
5002
  active: true
5054
- created_at: '2026-03-21T19:52:38.300Z'
5055
- updated_at: '2026-03-21T19:52:38.300Z'
5003
+ created_at: '2026-03-22T19:16:29.886Z'
5004
+ updated_at: '2026-03-22T19:16:29.886Z'
5056
5005
  schema:
5057
5006
  "$ref": "#/components/schemas/GiftCard"
5058
5007
  '404':
@@ -5129,9 +5078,9 @@ paths:
5129
5078
  application/json:
5130
5079
  example:
5131
5080
  id: cart_UkLWZg9DAJ
5132
- number: R530607425
5133
- token: K5jW24bTLG9fLT97A7d8yAoA7khj5mX1t33
5134
- email: nakisha@grahamwiza.us
5081
+ number: R629283600
5082
+ token: PiUTF47fNxPuJezCUy7SGWLMR91RoM5wA17
5083
+ email: craig@donnellybotsford.ca
5135
5084
  customer_note:
5136
5085
  currency: USD
5137
5086
  locale: en
@@ -5152,8 +5101,8 @@ paths:
5152
5101
  display_total: "$29.99"
5153
5102
  delivery_total: '0.0'
5154
5103
  display_delivery_total: "$0.00"
5155
- created_at: '2026-03-21T19:52:40.128Z'
5156
- updated_at: '2026-03-21T19:52:40.226Z'
5104
+ created_at: '2026-03-22T19:16:31.626Z'
5105
+ updated_at: '2026-03-22T19:16:31.821Z'
5157
5106
  current_step: address
5158
5107
  completed_steps: []
5159
5108
  requirements:
@@ -5173,8 +5122,8 @@ paths:
5173
5122
  variant_id: variant_UkLWZg9DAJ
5174
5123
  quantity: 1
5175
5124
  currency: USD
5176
- name: Product 429602
5177
- slug: product-429602
5125
+ name: Product 419663
5126
+ slug: product-419663
5178
5127
  options_text: ''
5179
5128
  price: '10.0'
5180
5129
  display_price: "$10.00"
@@ -5193,8 +5142,8 @@ paths:
5193
5142
  discounted_amount: '10.0'
5194
5143
  display_discounted_amount: "$10.00"
5195
5144
  display_compare_at_amount: "$0.00"
5196
- created_at: '2026-03-21T19:52:40.159Z'
5197
- updated_at: '2026-03-21T19:52:40.159Z'
5145
+ created_at: '2026-03-22T19:16:31.692Z'
5146
+ updated_at: '2026-03-22T19:16:31.692Z'
5198
5147
  compare_at_amount:
5199
5148
  thumbnail_url:
5200
5149
  option_values: []
@@ -5203,8 +5152,8 @@ paths:
5203
5152
  variant_id: variant_gbHJdmfrXB
5204
5153
  quantity: 1
5205
5154
  currency: USD
5206
- name: Product 433544
5207
- slug: product-433544
5155
+ name: Product 429975
5156
+ slug: product-429975
5208
5157
  options_text: ''
5209
5158
  price: '19.99'
5210
5159
  display_price: "$19.99"
@@ -5223,8 +5172,8 @@ paths:
5223
5172
  discounted_amount: '19.99'
5224
5173
  display_discounted_amount: "$19.99"
5225
5174
  display_compare_at_amount: "$0.00"
5226
- created_at: '2026-03-21T19:52:40.202Z'
5227
- updated_at: '2026-03-21T19:52:40.202Z'
5175
+ created_at: '2026-03-22T19:16:31.776Z'
5176
+ updated_at: '2026-03-22T19:16:31.776Z'
5228
5177
  compare_at_amount:
5229
5178
  thumbnail_url:
5230
5179
  option_values: []
@@ -5236,7 +5185,7 @@ paths:
5236
5185
  first_name: John
5237
5186
  last_name: Doe
5238
5187
  full_name: John Doe
5239
- address1: 160 Lovely Street
5188
+ address1: 151 Lovely Street
5240
5189
  address2: Northwest
5241
5190
  postal_code: '35005'
5242
5191
  city: Herndon
@@ -5244,10 +5193,12 @@ paths:
5244
5193
  company: Company
5245
5194
  country_name: United States of America
5246
5195
  country_iso: US
5247
- state_text: STATE_ABBR_170
5248
- state_abbr: STATE_ABBR_170
5196
+ state_text: STATE_ABBR_161
5197
+ state_abbr: STATE_ABBR_161
5249
5198
  quick_checkout: false
5250
- state_name: STATE_NAME_170
5199
+ is_default_billing: false
5200
+ is_default_shipping: false
5201
+ state_name: STATE_NAME_161
5251
5202
  shipping_address:
5252
5203
  payment_methods: []
5253
5204
  schema:
@@ -5344,9 +5295,9 @@ paths:
5344
5295
  application/json:
5345
5296
  example:
5346
5297
  id: cart_UkLWZg9DAJ
5347
- number: R861394244
5348
- token: NaVa6UfWE717T4ufMAwRaGYBaEWssMMjX97
5349
- email: ezekiel.schmitt@wiza.name
5298
+ number: R653202365
5299
+ token: 2eu7fAaBSEAXtBgHYeNS9kzweJ5oMoms18W
5300
+ email: lorilee_pacocha@quitzon.com
5350
5301
  customer_note:
5351
5302
  currency: USD
5352
5303
  locale: en
@@ -5367,8 +5318,8 @@ paths:
5367
5318
  display_total: "$0.00"
5368
5319
  delivery_total: '0.0'
5369
5320
  display_delivery_total: "$0.00"
5370
- created_at: '2026-03-21T19:52:42.069Z'
5371
- updated_at: '2026-03-21T19:52:42.120Z'
5321
+ created_at: '2026-03-22T19:16:33.588Z'
5322
+ updated_at: '2026-03-22T19:16:33.616Z'
5372
5323
  current_step: address
5373
5324
  completed_steps: []
5374
5325
  requirements:
@@ -5385,8 +5336,8 @@ paths:
5385
5336
  variant_id: variant_UkLWZg9DAJ
5386
5337
  quantity: 1
5387
5338
  currency: USD
5388
- name: Product 468553
5389
- slug: product-468553
5339
+ name: Product 457834
5340
+ slug: product-457834
5390
5341
  options_text: ''
5391
5342
  price: '10.0'
5392
5343
  display_price: "$10.00"
@@ -5405,8 +5356,8 @@ paths:
5405
5356
  discounted_amount: '10.0'
5406
5357
  display_discounted_amount: "$10.00"
5407
5358
  display_compare_at_amount: "$0.00"
5408
- created_at: '2026-03-21T19:52:42.119Z'
5409
- updated_at: '2026-03-21T19:52:42.142Z'
5359
+ created_at: '2026-03-22T19:16:33.615Z'
5360
+ updated_at: '2026-03-22T19:16:33.632Z'
5410
5361
  compare_at_amount:
5411
5362
  thumbnail_url:
5412
5363
  option_values: []
@@ -5418,7 +5369,7 @@ paths:
5418
5369
  first_name: John
5419
5370
  last_name: Doe
5420
5371
  full_name: John Doe
5421
- address1: 169 Lovely Street
5372
+ address1: 160 Lovely Street
5422
5373
  address2: Northwest
5423
5374
  postal_code: '35005'
5424
5375
  city: Herndon
@@ -5426,10 +5377,12 @@ paths:
5426
5377
  company: Company
5427
5378
  country_name: United States of America
5428
5379
  country_iso: US
5429
- state_text: STATE_ABBR_179
5430
- state_abbr: STATE_ABBR_179
5380
+ state_text: STATE_ABBR_170
5381
+ state_abbr: STATE_ABBR_170
5431
5382
  quick_checkout: false
5432
- state_name: STATE_NAME_179
5383
+ is_default_billing: false
5384
+ is_default_shipping: false
5385
+ state_name: STATE_NAME_170
5433
5386
  shipping_address:
5434
5387
  payment_methods: []
5435
5388
  schema:
@@ -5506,9 +5459,9 @@ paths:
5506
5459
  application/json:
5507
5460
  example:
5508
5461
  id: cart_UkLWZg9DAJ
5509
- number: R765095735
5510
- token: u36SDKBNz9yc5XLDRTNbRBEksStn79rBoFk
5511
- email: leif@ankunding.name
5462
+ number: R541744690
5463
+ token: vf62LRhU3ECJ4VWawcoxpQKFR2kBKGFt2XN
5464
+ email: lemuel.frami@berniergoldner.biz
5512
5465
  customer_note:
5513
5466
  currency: USD
5514
5467
  locale: en
@@ -5529,8 +5482,8 @@ paths:
5529
5482
  display_total: "$0.00"
5530
5483
  delivery_total: '0.0'
5531
5484
  display_delivery_total: "$0.00"
5532
- created_at: '2026-03-21T19:52:42.774Z'
5533
- updated_at: '2026-03-21T19:52:42.859Z'
5485
+ created_at: '2026-03-22T19:16:34.175Z'
5486
+ updated_at: '2026-03-22T19:16:34.228Z'
5534
5487
  current_step: address
5535
5488
  completed_steps: []
5536
5489
  requirements:
@@ -5553,7 +5506,7 @@ paths:
5553
5506
  first_name: John
5554
5507
  last_name: Doe
5555
5508
  full_name: John Doe
5556
- address1: 172 Lovely Street
5509
+ address1: 163 Lovely Street
5557
5510
  address2: Northwest
5558
5511
  postal_code: '35005'
5559
5512
  city: Herndon
@@ -5561,10 +5514,12 @@ paths:
5561
5514
  company: Company
5562
5515
  country_name: United States of America
5563
5516
  country_iso: US
5564
- state_text: STATE_ABBR_182
5565
- state_abbr: STATE_ABBR_182
5517
+ state_text: STATE_ABBR_173
5518
+ state_abbr: STATE_ABBR_173
5566
5519
  quick_checkout: false
5567
- state_name: STATE_NAME_182
5520
+ is_default_billing: false
5521
+ is_default_shipping: false
5522
+ state_name: STATE_NAME_173
5568
5523
  shipping_address:
5569
5524
  payment_methods: []
5570
5525
  schema:
@@ -5583,7 +5538,7 @@ paths:
5583
5538
  get:
5584
5539
  summary: List supported locales
5585
5540
  tags:
5586
- - Internationalization
5541
+ - Markets
5587
5542
  security:
5588
5543
  - api_key: []
5589
5544
  description: Returns locales supported by the store (derived from markets)
@@ -5710,12 +5665,12 @@ paths:
5710
5665
  - fr
5711
5666
  countries:
5712
5667
  - iso: DE
5713
- iso3: IS45
5668
+ iso3: IS41
5714
5669
  name: Germany
5715
5670
  states_required: false
5716
5671
  zipcode_required: true
5717
5672
  - iso: FR
5718
- iso3: IS46
5673
+ iso3: IS42
5719
5674
  name: France
5720
5675
  states_required: false
5721
5676
  zipcode_required: true
@@ -5794,12 +5749,12 @@ paths:
5794
5749
  - fr
5795
5750
  countries:
5796
5751
  - iso: DE
5797
- iso3: IS49
5752
+ iso3: IS45
5798
5753
  name: Germany
5799
5754
  states_required: false
5800
5755
  zipcode_required: true
5801
5756
  - iso: FR
5802
- iso3: IS50
5757
+ iso3: IS46
5803
5758
  name: France
5804
5759
  states_required: false
5805
5760
  zipcode_required: true
@@ -5874,12 +5829,12 @@ paths:
5874
5829
  - fr
5875
5830
  countries:
5876
5831
  - iso: DE
5877
- iso3: IS53
5832
+ iso3: IS49
5878
5833
  name: Germany
5879
5834
  states_required: false
5880
5835
  zipcode_required: true
5881
5836
  - iso: FR
5882
- iso3: IS54
5837
+ iso3: IS50
5883
5838
  name: France
5884
5839
  states_required: false
5885
5840
  zipcode_required: true
@@ -5943,12 +5898,12 @@ paths:
5943
5898
  example:
5944
5899
  data:
5945
5900
  - iso: FR
5946
- iso3: IS58
5901
+ iso3: IS54
5947
5902
  name: France
5948
5903
  states_required: false
5949
5904
  zipcode_required: true
5950
5905
  - iso: DE
5951
- iso3: IS57
5906
+ iso3: IS53
5952
5907
  name: Germany
5953
5908
  states_required: false
5954
5909
  zipcode_required: true
@@ -6083,7 +6038,7 @@ paths:
6083
6038
  application/json:
6084
6039
  example:
6085
6040
  id: or_UkLWZg9DAJ
6086
- number: R073921071
6041
+ number: R598466821
6087
6042
  email: guest@example.com
6088
6043
  customer_note:
6089
6044
  currency: USD
@@ -6107,17 +6062,17 @@ paths:
6107
6062
  display_delivery_total: "$100.00"
6108
6063
  fulfillment_status:
6109
6064
  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'
6065
+ completed_at: '2026-03-22T19:16:35.924Z'
6066
+ created_at: '2026-03-22T19:16:35.876Z'
6067
+ updated_at: '2026-03-22T19:16:35.924Z'
6113
6068
  discounts: []
6114
6069
  items:
6115
6070
  - id: li_UkLWZg9DAJ
6116
6071
  variant_id: variant_UkLWZg9DAJ
6117
6072
  quantity: 1
6118
6073
  currency: USD
6119
- name: Product 504078
6120
- slug: product-504078
6074
+ name: Product 494489
6075
+ slug: product-494489
6121
6076
  options_text: ''
6122
6077
  price: '10.0'
6123
6078
  display_price: "$10.00"
@@ -6136,21 +6091,21 @@ paths:
6136
6091
  discounted_amount: '10.0'
6137
6092
  display_discounted_amount: "$10.00"
6138
6093
  display_compare_at_amount: "$0.00"
6139
- created_at: '2026-03-21T19:52:45.333Z'
6140
- updated_at: '2026-03-21T19:52:45.333Z'
6094
+ created_at: '2026-03-22T19:16:35.905Z'
6095
+ updated_at: '2026-03-22T19:16:35.905Z'
6141
6096
  compare_at_amount:
6142
6097
  thumbnail_url:
6143
6098
  option_values: []
6144
6099
  digital_links: []
6145
6100
  fulfillments:
6146
6101
  - id: ful_UkLWZg9DAJ
6147
- number: H63432445025
6102
+ number: H99315604293
6148
6103
  tracking: U10000
6149
6104
  tracking_url:
6150
6105
  cost: '100.0'
6151
6106
  display_cost: "$100.00"
6152
- created_at: '2026-03-21T19:52:45.341Z'
6153
- updated_at: '2026-03-21T19:52:45.362Z'
6107
+ created_at: '2026-03-22T19:16:35.909Z'
6108
+ updated_at: '2026-03-22T19:16:35.922Z'
6154
6109
  status: pending
6155
6110
  fulfillment_type: shipping
6156
6111
  fulfilled_at:
@@ -6164,14 +6119,14 @@ paths:
6164
6119
  code: UPS_GROUND
6165
6120
  stock_location:
6166
6121
  id: sloc_UkLWZg9DAJ
6167
- state_abbr: STATE_ABBR_190
6168
- name: Melonie Daniel
6122
+ state_abbr: STATE_ABBR_181
6123
+ name: Reina Jacobs
6169
6124
  address1: 1600 Pennsylvania Ave NW
6170
6125
  city: Washington
6171
6126
  zipcode: '20500'
6172
6127
  country_iso: US
6173
6128
  country_name: United States of America
6174
- state_text: STATE_ABBR_190
6129
+ state_text: STATE_ABBR_181
6175
6130
  delivery_rates:
6176
6131
  - id: dr_gbHJdmfrXB
6177
6132
  delivery_method_id: dm_UkLWZg9DAJ
@@ -6189,7 +6144,7 @@ paths:
6189
6144
  first_name: John
6190
6145
  last_name: Doe
6191
6146
  full_name: John Doe
6192
- address1: 180 Lovely Street
6147
+ address1: 171 Lovely Street
6193
6148
  address2: Northwest
6194
6149
  postal_code: '35005'
6195
6150
  city: Herndon
@@ -6197,16 +6152,18 @@ paths:
6197
6152
  company: Company
6198
6153
  country_name: United States of America
6199
6154
  country_iso: US
6200
- state_text: STATE_ABBR_190
6201
- state_abbr: STATE_ABBR_190
6155
+ state_text: STATE_ABBR_181
6156
+ state_abbr: STATE_ABBR_181
6202
6157
  quick_checkout: false
6203
- state_name: STATE_NAME_190
6158
+ is_default_billing: false
6159
+ is_default_shipping: false
6160
+ state_name: STATE_NAME_181
6204
6161
  shipping_address:
6205
6162
  id: addr_gbHJdmfrXB
6206
6163
  first_name: John
6207
6164
  last_name: Doe
6208
6165
  full_name: John Doe
6209
- address1: 181 Lovely Street
6166
+ address1: 172 Lovely Street
6210
6167
  address2: Northwest
6211
6168
  postal_code: '35005'
6212
6169
  city: Herndon
@@ -6214,10 +6171,12 @@ paths:
6214
6171
  company: Company
6215
6172
  country_name: United States of America
6216
6173
  country_iso: US
6217
- state_text: STATE_ABBR_191
6218
- state_abbr: STATE_ABBR_191
6174
+ state_text: STATE_ABBR_182
6175
+ state_abbr: STATE_ABBR_182
6219
6176
  quick_checkout: false
6220
- state_name: STATE_NAME_191
6177
+ is_default_billing: false
6178
+ is_default_shipping: false
6179
+ state_name: STATE_NAME_182
6221
6180
  schema:
6222
6181
  "$ref": "#/components/schemas/Order"
6223
6182
  '404':
@@ -6230,80 +6189,6 @@ paths:
6230
6189
  message: Order not found
6231
6190
  schema:
6232
6191
  "$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
6192
  "/api/v3/store/carts/{cart_id}/payment_sessions":
6308
6193
  post:
6309
6194
  summary: Create payment session
@@ -6370,13 +6255,13 @@ paths:
6370
6255
  id: ps_gbHJdmfrXB
6371
6256
  status: pending
6372
6257
  currency: USD
6373
- external_id: bogus_361f8aeb0f3b36d339358cb9
6258
+ external_id: bogus_4c052a493944fd5d7b8fb20c
6374
6259
  external_data:
6375
- client_secret: bogus_secret_13facd8c6581f0af
6260
+ client_secret: bogus_secret_2386b86305f75b1c
6376
6261
  customer_external_id:
6377
6262
  expires_at:
6378
- created_at: '2026-03-21T19:52:47.966Z'
6379
- updated_at: '2026-03-21T19:52:47.966Z'
6263
+ created_at: '2026-03-22T19:16:37.732Z'
6264
+ updated_at: '2026-03-22T19:16:37.732Z'
6380
6265
  amount: '110.0'
6381
6266
  payment_method_id: pm_UkLWZg9DAJ
6382
6267
  order_id: or_UkLWZg9DAJ
@@ -6471,13 +6356,13 @@ paths:
6471
6356
  id: ps_UkLWZg9DAJ
6472
6357
  status: pending
6473
6358
  currency: USD
6474
- external_id: bogus_cfa244bf12cbdc4cc2b4a422
6359
+ external_id: bogus_dcc014f7dde72d66204836f7
6475
6360
  external_data:
6476
6361
  client_secret: secret_123
6477
6362
  customer_external_id:
6478
6363
  expires_at:
6479
- created_at: '2026-03-21T19:52:48.650Z'
6480
- updated_at: '2026-03-21T19:52:48.650Z'
6364
+ created_at: '2026-03-22T19:16:38.355Z'
6365
+ updated_at: '2026-03-22T19:16:38.355Z'
6481
6366
  amount: '110.0'
6482
6367
  payment_method_id: pm_UkLWZg9DAJ
6483
6368
  order_id: or_UkLWZg9DAJ
@@ -6534,13 +6419,13 @@ paths:
6534
6419
  id: ps_UkLWZg9DAJ
6535
6420
  status: pending
6536
6421
  currency: USD
6537
- external_id: bogus_1226b6e7dbd001c2642011b6
6422
+ external_id: bogus_76164c444df47970035bc0b2
6538
6423
  external_data:
6539
6424
  client_secret: secret_123
6540
6425
  customer_external_id:
6541
6426
  expires_at:
6542
- created_at: '2026-03-21T19:52:50.033Z'
6543
- updated_at: '2026-03-21T19:52:50.053Z'
6427
+ created_at: '2026-03-22T19:16:39.798Z'
6428
+ updated_at: '2026-03-22T19:16:39.814Z'
6544
6429
  amount: '50.0'
6545
6430
  payment_method_id: pm_UkLWZg9DAJ
6546
6431
  order_id: or_UkLWZg9DAJ
@@ -6637,13 +6522,13 @@ paths:
6637
6522
  id: ps_UkLWZg9DAJ
6638
6523
  status: completed
6639
6524
  currency: USD
6640
- external_id: bogus_8000399643a67c420bc5ec30
6525
+ external_id: bogus_090a5c2ddf24c47b023f75d7
6641
6526
  external_data:
6642
6527
  client_secret: secret_123
6643
6528
  customer_external_id:
6644
6529
  expires_at:
6645
- created_at: '2026-03-21T19:52:50.706Z'
6646
- updated_at: '2026-03-21T19:52:50.719Z'
6530
+ created_at: '2026-03-22T19:16:40.441Z'
6531
+ updated_at: '2026-03-22T19:16:40.458Z'
6647
6532
  amount: '110.0'
6648
6533
  payment_method_id: pm_UkLWZg9DAJ
6649
6534
  order_id: or_UkLWZg9DAJ
@@ -6677,7 +6562,7 @@ paths:
6677
6562
  external_data:
6678
6563
  type: object
6679
6564
  description: Provider-specific completion data
6680
- "/api/v3/store/customer/payment_setup_sessions":
6565
+ "/api/v3/store/customers/me/payment_setup_sessions":
6681
6566
  post:
6682
6567
  summary: Create payment setup session
6683
6568
  tags:
@@ -6723,11 +6608,11 @@ paths:
6723
6608
  example:
6724
6609
  id: pss_gbHJdmfrXB
6725
6610
  status: pending
6726
- external_id: bogus_seti_bc92ca51561f12451a2ad9de
6727
- external_client_secret: bogus_seti_secret_fdb823de0a0a784d
6611
+ external_id: bogus_seti_2372f9a91a4b546400108a31
6612
+ external_client_secret: bogus_seti_secret_2d1a01b5d26a0b94
6728
6613
  external_data: {}
6729
- created_at: '2026-03-21T19:52:52.045Z'
6730
- updated_at: '2026-03-21T19:52:52.045Z'
6614
+ created_at: '2026-03-22T19:16:42.025Z'
6615
+ updated_at: '2026-03-22T19:16:42.025Z'
6731
6616
  payment_method_id: pm_UkLWZg9DAJ
6732
6617
  payment_source_id:
6733
6618
  payment_source_type:
@@ -6775,7 +6660,7 @@ paths:
6775
6660
  description: Provider-specific data passed to the gateway
6776
6661
  required:
6777
6662
  - payment_method_id
6778
- "/api/v3/store/customer/payment_setup_sessions/{id}":
6663
+ "/api/v3/store/customers/me/payment_setup_sessions/{id}":
6779
6664
  parameters:
6780
6665
  - name: x-spree-api-key
6781
6666
  in: header
@@ -6824,12 +6709,12 @@ paths:
6824
6709
  example:
6825
6710
  id: pss_UkLWZg9DAJ
6826
6711
  status: pending
6827
- external_id: seti_test_9576b402eff7dd32426f2041
6828
- external_client_secret: seti_secret_5db0c87a9f010ac2cf7ab1c3
6712
+ external_id: seti_test_e317c3296033e90da516ca73
6713
+ external_client_secret: seti_secret_ba5bcf61fffbdb9637381b6b
6829
6714
  external_data:
6830
6715
  client_secret: secret_123
6831
- created_at: '2026-03-21T19:52:53.985Z'
6832
- updated_at: '2026-03-21T19:52:53.985Z'
6716
+ created_at: '2026-03-22T19:16:43.668Z'
6717
+ updated_at: '2026-03-22T19:16:43.668Z'
6833
6718
  payment_method_id: pm_UkLWZg9DAJ
6834
6719
  payment_source_id:
6835
6720
  payment_source_type:
@@ -6852,7 +6737,7 @@ paths:
6852
6737
  message: Payment setup session not found
6853
6738
  schema:
6854
6739
  "$ref": "#/components/schemas/ErrorResponse"
6855
- "/api/v3/store/customer/payment_setup_sessions/{id}/complete":
6740
+ "/api/v3/store/customers/me/payment_setup_sessions/{id}/complete":
6856
6741
  parameters:
6857
6742
  - name: x-spree-api-key
6858
6743
  in: header
@@ -6902,12 +6787,12 @@ paths:
6902
6787
  example:
6903
6788
  id: pss_UkLWZg9DAJ
6904
6789
  status: completed
6905
- external_id: seti_test_ecbf29836d524e4f7e985bdc
6906
- external_client_secret: seti_secret_921e1c544210b71960358c2c
6790
+ external_id: seti_test_516a13ab9d27ce47ca1db052
6791
+ external_client_secret: seti_secret_1cd64dd0150755e6ab2cd971
6907
6792
  external_data:
6908
6793
  client_secret: secret_123
6909
- created_at: '2026-03-21T19:52:55.237Z'
6910
- updated_at: '2026-03-21T19:52:55.251Z'
6794
+ created_at: '2026-03-22T19:16:45.064Z'
6795
+ updated_at: '2026-03-22T19:16:45.093Z'
6911
6796
  payment_method_id: pm_UkLWZg9DAJ
6912
6797
  payment_source_id: card_UkLWZg9DAJ
6913
6798
  payment_source_type: Spree::CreditCard
@@ -6940,93 +6825,6 @@ paths:
6940
6825
  type: object
6941
6826
  description: Provider-specific completion data
6942
6827
  "/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
6828
  post:
7031
6829
  summary: Create payment
7032
6830
  tags:
@@ -7085,11 +6883,11 @@ paths:
7085
6883
  id: py_UkLWZg9DAJ
7086
6884
  payment_method_id: pm_UkLWZg9DAJ
7087
6885
  response_code:
7088
- number: P5MM9RYH
6886
+ number: PDMIZY8A
7089
6887
  amount: '110.0'
7090
6888
  display_amount: "$110.00"
7091
- created_at: '2026-03-21T19:52:57.287Z'
7092
- updated_at: '2026-03-21T19:52:57.287Z'
6889
+ created_at: '2026-03-22T19:16:46.594Z'
6890
+ updated_at: '2026-03-22T19:16:46.594Z'
7093
6891
  status: checkout
7094
6892
  source_type:
7095
6893
  source_id:
@@ -7247,26 +7045,20 @@ paths:
7247
7045
  example:
7248
7046
  data:
7249
7047
  - id: prod_UkLWZg9DAJ
7250
- name: Product 623277
7251
- slug: product-623277
7048
+ name: Product 594366
7049
+ slug: product-594366
7252
7050
  meta_description:
7253
7051
  meta_keywords:
7254
7052
  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'
7053
+ available_on: '2025-03-22T19:16:47.385Z'
7054
+ created_at: '2026-03-22T19:16:47.405Z'
7055
+ updated_at: '2026-03-22T19:16:47.458Z'
7258
7056
  purchasable: true
7259
7057
  in_stock: false
7260
7058
  backorderable: true
7261
7059
  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.
7060
+ description: A comfortable cotton t-shirt.
7061
+ description_html: "<p>A <strong>comfortable</strong> cotton t-shirt.</p>"
7270
7062
  default_variant_id: variant_gbHJdmfrXB
7271
7063
  thumbnail_url:
7272
7064
  tags: []
@@ -7282,30 +7074,30 @@ paths:
7282
7074
  price_list_id:
7283
7075
  original_price:
7284
7076
  - id: prod_gbHJdmfrXB
7285
- name: Product 637206
7286
- slug: product-637206
7077
+ name: Product 604253
7078
+ slug: product-604253
7287
7079
  meta_description:
7288
7080
  meta_keywords:
7289
7081
  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'
7082
+ available_on: '2025-03-22T19:16:47.464Z'
7083
+ created_at: '2026-03-22T19:16:47.475Z'
7084
+ updated_at: '2026-03-22T19:16:47.491Z'
7293
7085
  purchasable: true
7294
7086
  in_stock: false
7295
7087
  backorderable: true
7296
7088
  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.
7089
+ description: Pariatur totam perspiciatis atque nihil quod incidunt
7090
+ quasi. Atque esse dolore quidem animi vitae. Doloremque fugiat
7091
+ voluptatibus nostrum molestiae maiores. Facilis doloribus vel
7092
+ explicabo exercitationem. Saepe perferendis suscipit recusandae
7093
+ hic laboriosam. Pariatur similique vitae quaerat voluptates possimus
7094
+ atque ad sit. Repellendus in dolorem molestiae voluptatibus rerum
7095
+ eaque. Vero a earum cumque cupiditate voluptates odit. Ad iste
7096
+ corrupti animi dolorem necessitatibus maiores unde harum.
7303
7097
  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.
7098
+ Pariatur totam perspiciatis atque nihil quod incidunt quasi. Atque esse dolore quidem animi vitae. Doloremque fugiat voluptatibus nostrum molestiae maiores.
7099
+ Facilis doloribus vel explicabo exercitationem. Saepe perferendis suscipit recusandae hic laboriosam. Pariatur similique vitae quaerat voluptates possimus atque ad sit.
7100
+ Repellendus in dolorem molestiae voluptatibus rerum eaque. Vero a earum cumque cupiditate voluptates odit. Ad iste corrupti animi dolorem necessitatibus maiores unde harum.
7309
7101
  default_variant_id: variant_EfhxLZ9ck8
7310
7102
  thumbnail_url:
7311
7103
  tags: []
@@ -7407,24 +7199,20 @@ paths:
7407
7199
  application/json:
7408
7200
  example:
7409
7201
  id: prod_UkLWZg9DAJ
7410
- name: Product 741426
7411
- slug: product-741426
7202
+ name: Product 712532
7203
+ slug: product-712532
7412
7204
  meta_description:
7413
7205
  meta_keywords:
7414
7206
  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'
7207
+ available_on: '2025-03-22T19:16:48.140Z'
7208
+ created_at: '2026-03-22T19:16:48.155Z'
7209
+ updated_at: '2026-03-22T19:16:48.192Z'
7418
7210
  purchasable: true
7419
7211
  in_stock: false
7420
7212
  backorderable: true
7421
7213
  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.
7214
+ description: A comfortable cotton t-shirt.
7215
+ description_html: "<p>A <strong>comfortable</strong> cotton t-shirt.</p>"
7428
7216
  default_variant_id: variant_gbHJdmfrXB
7429
7217
  thumbnail_url:
7430
7218
  tags: []
@@ -7642,9 +7430,9 @@ paths:
7642
7430
  application/json:
7643
7431
  example:
7644
7432
  id: cart_UkLWZg9DAJ
7645
- number: R345441825
7646
- token: aHXVytTy5zHcpYPEAxWsd1oaoarnMdhfqrD
7647
- email: martina.will@kohlerschroeder.info
7433
+ number: R773425535
7434
+ token: LtsQKZSzbBPknmVvaLAWkrMynt5SWqz1Peh
7435
+ email: cordia_cruickshank@kuvalis.name
7648
7436
  customer_note:
7649
7437
  currency: USD
7650
7438
  locale: en
@@ -7665,8 +7453,8 @@ paths:
7665
7453
  display_total: "$110.00"
7666
7454
  delivery_total: '100.0'
7667
7455
  display_delivery_total: "$100.00"
7668
- created_at: '2026-03-21T19:53:00.753Z'
7669
- updated_at: '2026-03-21T19:53:00.802Z'
7456
+ created_at: '2026-03-22T19:16:50.958Z'
7457
+ updated_at: '2026-03-22T19:16:51.014Z'
7670
7458
  current_step: address
7671
7459
  completed_steps: []
7672
7460
  requirements: []
@@ -7677,8 +7465,8 @@ paths:
7677
7465
  variant_id: variant_UkLWZg9DAJ
7678
7466
  quantity: 1
7679
7467
  currency: USD
7680
- name: Product 1021211
7681
- slug: product-1021211
7468
+ name: Product 996834
7469
+ slug: product-996834
7682
7470
  options_text: ''
7683
7471
  price: '10.0'
7684
7472
  display_price: "$10.00"
@@ -7697,21 +7485,21 @@ paths:
7697
7485
  discounted_amount: '10.0'
7698
7486
  display_discounted_amount: "$10.00"
7699
7487
  display_compare_at_amount: "$0.00"
7700
- created_at: '2026-03-21T19:53:00.782Z'
7701
- updated_at: '2026-03-21T19:53:00.782Z'
7488
+ created_at: '2026-03-22T19:16:50.992Z'
7489
+ updated_at: '2026-03-22T19:16:50.992Z'
7702
7490
  compare_at_amount:
7703
7491
  thumbnail_url:
7704
7492
  option_values: []
7705
7493
  digital_links: []
7706
7494
  fulfillments:
7707
7495
  - id: ful_UkLWZg9DAJ
7708
- number: H95424626467
7496
+ number: H04891257437
7709
7497
  tracking: U10000
7710
7498
  tracking_url:
7711
7499
  cost: '100.0'
7712
7500
  display_cost: "$100.00"
7713
- created_at: '2026-03-21T19:53:00.786Z'
7714
- updated_at: '2026-03-21T19:53:00.799Z'
7501
+ created_at: '2026-03-22T19:16:50.997Z'
7502
+ updated_at: '2026-03-22T19:16:51.012Z'
7715
7503
  status: pending
7716
7504
  fulfillment_type: shipping
7717
7505
  fulfilled_at:
@@ -7725,14 +7513,14 @@ paths:
7725
7513
  code: UPS_GROUND
7726
7514
  stock_location:
7727
7515
  id: sloc_UkLWZg9DAJ
7728
- state_abbr: STATE_ABBR_262
7729
- name: Molly Bashirian
7516
+ state_abbr: STATE_ABBR_245
7517
+ name: Jeremy Waelchi
7730
7518
  address1: 1600 Pennsylvania Ave NW
7731
7519
  city: Washington
7732
7520
  zipcode: '20500'
7733
7521
  country_iso: US
7734
7522
  country_name: United States of America
7735
- state_text: STATE_ABBR_262
7523
+ state_text: STATE_ABBR_245
7736
7524
  delivery_rates:
7737
7525
  - id: dr_UkLWZg9DAJ
7738
7526
  delivery_method_id: dm_UkLWZg9DAJ
@@ -7747,12 +7535,12 @@ paths:
7747
7535
  payments:
7748
7536
  - id: py_UkLWZg9DAJ
7749
7537
  payment_method_id: pm_UkLWZg9DAJ
7750
- response_code: 1-SC-20260321195301110961
7751
- number: P9X6JHI3
7538
+ response_code: 1-SC-20260322191651363507
7539
+ number: PFV1EY6G
7752
7540
  amount: '10.0'
7753
7541
  display_amount: "$10.00"
7754
- created_at: '2026-03-21T19:53:01.114Z'
7755
- updated_at: '2026-03-21T19:53:01.114Z'
7542
+ created_at: '2026-03-22T19:16:51.367Z'
7543
+ updated_at: '2026-03-22T19:16:51.367Z'
7756
7544
  status: checkout
7757
7545
  source_type: store_credit
7758
7546
  source_id: credit_UkLWZg9DAJ
@@ -7776,7 +7564,7 @@ paths:
7776
7564
  first_name: John
7777
7565
  last_name: Doe
7778
7566
  full_name: John Doe
7779
- address1: 244 Lovely Street
7567
+ address1: 227 Lovely Street
7780
7568
  address2: Northwest
7781
7569
  postal_code: '35005'
7782
7570
  city: Herndon
@@ -7784,16 +7572,18 @@ paths:
7784
7572
  company: Company
7785
7573
  country_name: United States of America
7786
7574
  country_iso: US
7787
- state_text: STATE_ABBR_264
7788
- state_abbr: STATE_ABBR_264
7575
+ state_text: STATE_ABBR_247
7576
+ state_abbr: STATE_ABBR_247
7789
7577
  quick_checkout: false
7790
- state_name: STATE_NAME_264
7578
+ is_default_billing: false
7579
+ is_default_shipping: false
7580
+ state_name: STATE_NAME_247
7791
7581
  shipping_address:
7792
7582
  id: addr_VqXmZF31wY
7793
7583
  first_name: John
7794
7584
  last_name: Doe
7795
7585
  full_name: John Doe
7796
- address1: 245 Lovely Street
7586
+ address1: 228 Lovely Street
7797
7587
  address2: Northwest
7798
7588
  postal_code: '35005'
7799
7589
  city: Herndon
@@ -7801,10 +7591,12 @@ paths:
7801
7591
  company: Company
7802
7592
  country_name: United States of America
7803
7593
  country_iso: US
7804
- state_text: STATE_ABBR_265
7805
- state_abbr: STATE_ABBR_265
7594
+ state_text: STATE_ABBR_248
7595
+ state_abbr: STATE_ABBR_248
7806
7596
  quick_checkout: false
7807
- state_name: STATE_NAME_265
7597
+ is_default_billing: false
7598
+ is_default_shipping: false
7599
+ state_name: STATE_NAME_248
7808
7600
  payment_methods:
7809
7601
  - id: pm_UkLWZg9DAJ
7810
7602
  name: Store Credit
@@ -7884,9 +7676,9 @@ paths:
7884
7676
  application/json:
7885
7677
  example:
7886
7678
  id: cart_UkLWZg9DAJ
7887
- number: R694945052
7888
- token: 8KUiMaceGNYHZUxRx3af7gQSma18yTw2voW
7889
- email: brain_tillman@vonvonrueden.name
7679
+ number: R508069384
7680
+ token: wLFFr9QP6WxSANYQsaVVLbpFqhg431JdRzy
7681
+ email: ilona_feeney@lindadams.com
7890
7682
  customer_note:
7891
7683
  currency: USD
7892
7684
  locale: en
@@ -7907,8 +7699,8 @@ paths:
7907
7699
  display_total: "$110.00"
7908
7700
  delivery_total: '100.0'
7909
7701
  display_delivery_total: "$100.00"
7910
- created_at: '2026-03-21T19:53:02.286Z'
7911
- updated_at: '2026-03-21T19:53:02.337Z'
7702
+ created_at: '2026-03-22T19:16:52.555Z'
7703
+ updated_at: '2026-03-22T19:16:52.616Z'
7912
7704
  current_step: address
7913
7705
  completed_steps: []
7914
7706
  requirements:
@@ -7922,8 +7714,8 @@ paths:
7922
7714
  variant_id: variant_UkLWZg9DAJ
7923
7715
  quantity: 1
7924
7716
  currency: USD
7925
- name: Product 104345
7926
- slug: product-104345
7717
+ name: Product 1011450
7718
+ slug: product-1011450
7927
7719
  options_text: ''
7928
7720
  price: '10.0'
7929
7721
  display_price: "$10.00"
@@ -7942,21 +7734,21 @@ paths:
7942
7734
  discounted_amount: '10.0'
7943
7735
  display_discounted_amount: "$10.00"
7944
7736
  display_compare_at_amount: "$0.00"
7945
- created_at: '2026-03-21T19:53:02.316Z'
7946
- updated_at: '2026-03-21T19:53:02.316Z'
7737
+ created_at: '2026-03-22T19:16:52.592Z'
7738
+ updated_at: '2026-03-22T19:16:52.592Z'
7947
7739
  compare_at_amount:
7948
7740
  thumbnail_url:
7949
7741
  option_values: []
7950
7742
  digital_links: []
7951
7743
  fulfillments:
7952
7744
  - id: ful_UkLWZg9DAJ
7953
- number: H12836615966
7745
+ number: H56314409705
7954
7746
  tracking: U10000
7955
7747
  tracking_url:
7956
7748
  cost: '100.0'
7957
7749
  display_cost: "$100.00"
7958
- created_at: '2026-03-21T19:53:02.322Z'
7959
- updated_at: '2026-03-21T19:53:02.335Z'
7750
+ created_at: '2026-03-22T19:16:52.598Z'
7751
+ updated_at: '2026-03-22T19:16:52.613Z'
7960
7752
  status: pending
7961
7753
  fulfillment_type: shipping
7962
7754
  fulfilled_at:
@@ -7970,14 +7762,14 @@ paths:
7970
7762
  code: UPS_GROUND
7971
7763
  stock_location:
7972
7764
  id: sloc_UkLWZg9DAJ
7973
- state_abbr: STATE_ABBR_270
7974
- name: Kandice Donnelly
7765
+ state_abbr: STATE_ABBR_253
7766
+ name: Brinda Krajcik
7975
7767
  address1: 1600 Pennsylvania Ave NW
7976
7768
  city: Washington
7977
7769
  zipcode: '20500'
7978
7770
  country_iso: US
7979
7771
  country_name: United States of America
7980
- state_text: STATE_ABBR_270
7772
+ state_text: STATE_ABBR_253
7981
7773
  delivery_rates:
7982
7774
  - id: dr_UkLWZg9DAJ
7983
7775
  delivery_method_id: dm_UkLWZg9DAJ
@@ -7995,7 +7787,7 @@ paths:
7995
7787
  first_name: John
7996
7788
  last_name: Doe
7997
7789
  full_name: John Doe
7998
- address1: 252 Lovely Street
7790
+ address1: 235 Lovely Street
7999
7791
  address2: Northwest
8000
7792
  postal_code: '35005'
8001
7793
  city: Herndon
@@ -8003,16 +7795,18 @@ paths:
8003
7795
  company: Company
8004
7796
  country_name: United States of America
8005
7797
  country_iso: US
8006
- state_text: STATE_ABBR_272
8007
- state_abbr: STATE_ABBR_272
7798
+ state_text: STATE_ABBR_255
7799
+ state_abbr: STATE_ABBR_255
8008
7800
  quick_checkout: false
8009
- state_name: STATE_NAME_272
7801
+ is_default_billing: false
7802
+ is_default_shipping: false
7803
+ state_name: STATE_NAME_255
8010
7804
  shipping_address:
8011
7805
  id: addr_VqXmZF31wY
8012
7806
  first_name: John
8013
7807
  last_name: Doe
8014
7808
  full_name: John Doe
8015
- address1: 253 Lovely Street
7809
+ address1: 236 Lovely Street
8016
7810
  address2: Northwest
8017
7811
  postal_code: '35005'
8018
7812
  city: Herndon
@@ -8020,10 +7814,12 @@ paths:
8020
7814
  company: Company
8021
7815
  country_name: United States of America
8022
7816
  country_iso: US
8023
- state_text: STATE_ABBR_273
8024
- state_abbr: STATE_ABBR_273
7817
+ state_text: STATE_ABBR_256
7818
+ state_abbr: STATE_ABBR_256
8025
7819
  quick_checkout: false
8026
- state_name: STATE_NAME_273
7820
+ is_default_billing: false
7821
+ is_default_shipping: false
7822
+ state_name: STATE_NAME_256
8027
7823
  payment_methods: []
8028
7824
  schema:
8029
7825
  "$ref": "#/components/schemas/Cart"
@@ -8087,9 +7883,9 @@ paths:
8087
7883
  data:
8088
7884
  - id: wl_UkLWZg9DAJ
8089
7885
  name: My Wishlist
8090
- token: KR4eNvh2baWrufFQAfRXiSxu
8091
- created_at: '2026-03-21T19:53:02.899Z'
8092
- updated_at: '2026-03-21T19:53:02.899Z'
7886
+ token: Vwj3bMdaJnraghvRFjGUaS44
7887
+ created_at: '2026-03-22T19:16:53.379Z'
7888
+ updated_at: '2026-03-22T19:16:53.379Z'
8093
7889
  is_default: false
8094
7890
  is_private: true
8095
7891
  meta:
@@ -8165,9 +7961,9 @@ paths:
8165
7961
  example:
8166
7962
  id: wl_gbHJdmfrXB
8167
7963
  name: Birthday Ideas
8168
- token: QtyxTCbvjJtfcPr9hBz9Sp2z
8169
- created_at: '2026-03-21T19:53:04.092Z'
8170
- updated_at: '2026-03-21T19:53:04.092Z'
7964
+ token: utDj15kp1Mf9WKdEZ69VoMMv
7965
+ created_at: '2026-03-22T19:16:54.900Z'
7966
+ updated_at: '2026-03-22T19:16:54.900Z'
8171
7967
  is_default: false
8172
7968
  is_private: true
8173
7969
  schema:
@@ -8263,9 +8059,9 @@ paths:
8263
8059
  example:
8264
8060
  id: wl_UkLWZg9DAJ
8265
8061
  name: My Wishlist
8266
- token: PAbPdmsriEWoZh9Tda66SkvS
8267
- created_at: '2026-03-21T19:53:05.198Z'
8268
- updated_at: '2026-03-21T19:53:05.198Z'
8062
+ token: WmxC8NpXKd2Hi3TKmBqM3xHq
8063
+ created_at: '2026-03-22T19:16:56.073Z'
8064
+ updated_at: '2026-03-22T19:16:56.073Z'
8269
8065
  is_default: false
8270
8066
  is_private: true
8271
8067
  schema:
@@ -8327,9 +8123,9 @@ paths:
8327
8123
  example:
8328
8124
  id: wl_UkLWZg9DAJ
8329
8125
  name: Updated Name
8330
- token: iXE7pUE5yDteXqYHidrt4np3
8331
- created_at: '2026-03-21T19:53:06.356Z'
8332
- updated_at: '2026-03-21T19:53:06.415Z'
8126
+ token: GGZHEu1GLeDMRNeX4pfBZoRW
8127
+ created_at: '2026-03-22T19:16:57.261Z'
8128
+ updated_at: '2026-03-22T19:16:57.309Z'
8333
8129
  is_default: false
8334
8130
  is_private: true
8335
8131
  schema:
@@ -8441,17 +8237,17 @@ paths:
8441
8237
  variant_id: variant_gbHJdmfrXB
8442
8238
  wishlist_id: wl_UkLWZg9DAJ
8443
8239
  quantity: 1
8444
- created_at: '2026-03-21T19:53:07.625Z'
8445
- updated_at: '2026-03-21T19:53:07.625Z'
8240
+ created_at: '2026-03-22T19:16:58.572Z'
8241
+ updated_at: '2026-03-22T19:16:58.572Z'
8446
8242
  variant:
8447
8243
  id: variant_gbHJdmfrXB
8448
8244
  product_id: prod_gbHJdmfrXB
8449
- sku: SKU-124
8245
+ sku: SKU-121
8450
8246
  options_text: ''
8451
8247
  track_inventory: true
8452
8248
  media_count: 0
8453
- created_at: '2026-03-21T19:53:07.599Z'
8454
- updated_at: '2026-03-21T19:53:07.610Z'
8249
+ created_at: '2026-03-22T19:16:58.544Z'
8250
+ updated_at: '2026-03-22T19:16:58.553Z'
8455
8251
  thumbnail_url:
8456
8252
  purchasable: true
8457
8253
  in_stock: false
@@ -8549,51 +8345,21 @@ servers:
8549
8345
  default: localhost:3000
8550
8346
  tags:
8551
8347
  - name: Authentication
8552
- description: Customer authentication and registration
8553
- - name: Store
8554
- description: Store information and settings
8348
+ description: Customer authentication (login, logout, token refresh)
8555
8349
  - 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
8350
+ description: Products and categories
8351
+ - name: Carts
8560
8352
  description: Shopping cart management
8561
- - name: Checkout
8562
- description: Checkout flow and order updates
8563
8353
  - name: Orders
8564
8354
  description: Order lookup
8565
8355
  - name: Customers
8566
8356
  description: Customer account, addresses, saved payment methods, and order history
8357
+ - name: Markets
8358
+ description: Markets, countries, currencies, and locales
8567
8359
  - name: Wishlists
8568
8360
  description: Customer wishlists
8569
8361
  - name: Digitals
8570
8362
  description: Digital product downloads
8571
- - name: Markets
8572
- description: Market information and resolution
8573
- x-tagGroups:
8574
- - name: Store
8575
- tags:
8576
- - Store
8577
- - Internationalization
8578
- - Markets
8579
- - name: Catalog
8580
- tags:
8581
- - Product Catalog
8582
- - name: Cart
8583
- tags:
8584
- - Cart
8585
- - name: Checkout
8586
- tags:
8587
- - Checkout
8588
- - name: Orders
8589
- tags:
8590
- - Orders
8591
- - name: Customer
8592
- tags:
8593
- - Authentication
8594
- - Customers
8595
- - Wishlists
8596
- - Digitals
8597
8363
  components:
8598
8364
  securitySchemes:
8599
8365
  api_key:
@@ -8788,6 +8554,10 @@ components:
8788
8554
  nullable: true
8789
8555
  quick_checkout:
8790
8556
  type: boolean
8557
+ is_default_billing:
8558
+ type: boolean
8559
+ is_default_shipping:
8560
+ type: boolean
8791
8561
  state_name:
8792
8562
  type: string
8793
8563
  nullable: true
@@ -8807,6 +8577,8 @@ components:
8807
8577
  - state_text
8808
8578
  - state_abbr
8809
8579
  - quick_checkout
8580
+ - is_default_billing
8581
+ - is_default_shipping
8810
8582
  - state_name
8811
8583
  x-typelizer: true
8812
8584
  Base: