@spree/docs 0.1.1 → 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/
|
|
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/
|
|
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.
|
|
665
|
-
refresh_token:
|
|
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:
|
|
670
|
-
last_name:
|
|
598
|
+
first_name: Jami
|
|
599
|
+
last_name: Jones
|
|
671
600
|
phone:
|
|
672
601
|
accepts_email_marketing: false
|
|
673
|
-
created_at: '2026-03-
|
|
674
|
-
updated_at: '2026-03-
|
|
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.
|
|
746
|
-
refresh_token:
|
|
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:
|
|
751
|
-
last_name:
|
|
679
|
+
first_name: Elbert
|
|
680
|
+
last_name: Zemlak
|
|
752
681
|
phone:
|
|
753
682
|
accepts_email_marketing: false
|
|
754
|
-
created_at: '2026-03-
|
|
755
|
-
updated_at: '2026-03-
|
|
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:
|
|
825
|
-
token:
|
|
826
|
-
email:
|
|
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-
|
|
848
|
-
updated_at: '2026-03-
|
|
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
|
|
863
|
-
slug: product-
|
|
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-
|
|
883
|
-
updated_at: '2026-03-
|
|
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:
|
|
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-
|
|
896
|
-
updated_at: '2026-03-
|
|
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:
|
|
911
|
-
name:
|
|
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:
|
|
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:
|
|
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:
|
|
944
|
-
state_abbr:
|
|
918
|
+
state_text: STATE_ABBR_36
|
|
919
|
+
state_abbr: STATE_ABBR_36
|
|
945
920
|
quick_checkout: false
|
|
946
|
-
|
|
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:
|
|
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:
|
|
961
|
-
state_abbr:
|
|
937
|
+
state_text: STATE_ABBR_37
|
|
938
|
+
state_abbr: STATE_ABBR_37
|
|
962
939
|
quick_checkout: false
|
|
963
|
-
|
|
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:
|
|
967
|
-
token:
|
|
968
|
-
email:
|
|
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-
|
|
990
|
-
updated_at: '2026-03-
|
|
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
|
|
1005
|
-
slug: product-
|
|
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-
|
|
1025
|
-
updated_at: '2026-03-
|
|
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:
|
|
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-
|
|
1038
|
-
updated_at: '2026-03-
|
|
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:
|
|
1053
|
-
name:
|
|
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:
|
|
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:
|
|
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:
|
|
1086
|
-
state_abbr:
|
|
1064
|
+
state_text: STATE_ABBR_34
|
|
1065
|
+
state_abbr: STATE_ABBR_34
|
|
1087
1066
|
quick_checkout: false
|
|
1088
|
-
|
|
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:
|
|
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:
|
|
1103
|
-
state_abbr:
|
|
1083
|
+
state_text: STATE_ABBR_35
|
|
1084
|
+
state_abbr: STATE_ABBR_35
|
|
1104
1085
|
quick_checkout: false
|
|
1105
|
-
|
|
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:
|
|
1182
|
-
token:
|
|
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-
|
|
1205
|
-
updated_at: '2026-03-
|
|
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:
|
|
1314
|
-
token:
|
|
1315
|
-
email:
|
|
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-
|
|
1337
|
-
updated_at: '2026-03-
|
|
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
|
|
1352
|
-
slug: product-
|
|
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-
|
|
1372
|
-
updated_at: '2026-03-
|
|
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:
|
|
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-
|
|
1385
|
-
updated_at: '2026-03-
|
|
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:
|
|
1400
|
-
name:
|
|
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:
|
|
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:
|
|
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:
|
|
1433
|
-
state_abbr:
|
|
1415
|
+
state_text: STATE_ABBR_42
|
|
1416
|
+
state_abbr: STATE_ABBR_42
|
|
1434
1417
|
quick_checkout: false
|
|
1435
|
-
|
|
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:
|
|
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:
|
|
1450
|
-
state_abbr:
|
|
1434
|
+
state_text: STATE_ABBR_43
|
|
1435
|
+
state_abbr: STATE_ABBR_43
|
|
1451
1436
|
quick_checkout: false
|
|
1452
|
-
|
|
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:
|
|
1535
|
-
token:
|
|
1536
|
-
email:
|
|
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-
|
|
1558
|
-
updated_at: '2026-03-
|
|
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
|
|
1575
|
-
slug: product-
|
|
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-
|
|
1595
|
-
updated_at: '2026-03-
|
|
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:
|
|
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-
|
|
1608
|
-
updated_at: '2026-03-
|
|
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:
|
|
1623
|
-
name:
|
|
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:
|
|
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:
|
|
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:
|
|
1656
|
-
state_abbr:
|
|
1642
|
+
state_text: STATE_ABBR_46
|
|
1643
|
+
state_abbr: STATE_ABBR_46
|
|
1657
1644
|
quick_checkout: false
|
|
1658
|
-
|
|
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:
|
|
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:
|
|
1673
|
-
state_abbr:
|
|
1661
|
+
state_text: STATE_ABBR_47
|
|
1662
|
+
state_abbr: STATE_ABBR_47
|
|
1674
1663
|
quick_checkout: false
|
|
1675
|
-
|
|
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:
|
|
1846
|
-
token:
|
|
1847
|
-
email:
|
|
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-
|
|
1869
|
-
updated_at: '2026-03-
|
|
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
|
|
1884
|
-
slug: product-
|
|
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-
|
|
1904
|
-
updated_at: '2026-03-
|
|
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:
|
|
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-
|
|
1917
|
-
updated_at: '2026-03-
|
|
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:
|
|
1932
|
-
name:
|
|
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:
|
|
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:
|
|
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:
|
|
1965
|
-
state_abbr:
|
|
1955
|
+
state_text: STATE_ABBR_52
|
|
1956
|
+
state_abbr: STATE_ABBR_52
|
|
1966
1957
|
quick_checkout: false
|
|
1967
|
-
|
|
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:
|
|
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:
|
|
1982
|
-
state_abbr:
|
|
1974
|
+
state_text: STATE_ABBR_53
|
|
1975
|
+
state_abbr: STATE_ABBR_53
|
|
1983
1976
|
quick_checkout: false
|
|
1984
|
-
|
|
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:
|
|
2052
|
-
email:
|
|
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-
|
|
2076
|
-
created_at: '2026-03-
|
|
2077
|
-
updated_at: '2026-03-
|
|
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
|
|
2085
|
-
slug: product-
|
|
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-
|
|
2105
|
-
updated_at: '2026-03-
|
|
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:
|
|
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-
|
|
2118
|
-
updated_at: '2026-03-
|
|
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:
|
|
2133
|
-
name:
|
|
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:
|
|
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:
|
|
2150
|
+
number: P6SQHB3O
|
|
2156
2151
|
amount: '29.99'
|
|
2157
2152
|
display_amount: "$29.99"
|
|
2158
|
-
created_at: '2026-03-
|
|
2159
|
-
updated_at: '2026-03-
|
|
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:
|
|
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:
|
|
2192
|
-
state_abbr:
|
|
2186
|
+
state_text: STATE_ABBR_60
|
|
2187
|
+
state_abbr: STATE_ABBR_60
|
|
2193
2188
|
quick_checkout: false
|
|
2194
|
-
|
|
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:
|
|
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:
|
|
2209
|
-
state_abbr:
|
|
2205
|
+
state_text: STATE_ABBR_61
|
|
2206
|
+
state_abbr: STATE_ABBR_61
|
|
2210
2207
|
quick_checkout: false
|
|
2211
|
-
|
|
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-
|
|
2293
|
-
updated_at: '2026-03-
|
|
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-
|
|
2312
|
-
updated_at: '2026-03-
|
|
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-
|
|
2331
|
-
updated_at: '2026-03-
|
|
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-
|
|
2433
|
-
updated_at: '2026-03-
|
|
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,23 +2556,39 @@ paths:
|
|
|
2557
2556
|
example:
|
|
2558
2557
|
data:
|
|
2559
2558
|
- id: prod_UkLWZg9DAJ
|
|
2560
|
-
name: Product
|
|
2561
|
-
|
|
2562
|
-
Saepe provident mollitia facere sit quidem. Reprehenderit assumenda accusamus officia nulla eveniet delectus fugit laudantium. Alias consequuntur nesciunt quos magni exercitationem. Molestiae eligendi architecto placeat aliquid ut animi nisi.
|
|
2563
|
-
Possimus veniam sed voluptas cumque asperiores tempore. Maiores facilis at adipisci enim dicta non voluptate similique. Accusantium tempora ad non officia aliquid quas. Rerum veritatis et iusto necessitatibus est voluptates doloremque asperiores.
|
|
2564
|
-
Excepturi aperiam dolor facere iusto minima quasi eaque. Nesciunt beatae distinctio eos quisquam laborum. Voluptate corporis eligendi fugit laborum autem. Sint facilis quo recusandae eum eligendi. Odit ad eaque quis similique.
|
|
2565
|
-
Quisquam debitis ipsam enim deserunt doloribus velit voluptatum. Corporis reiciendis doloremque quod ab occaecati sed. Sed commodi aperiam repudiandae impedit quisquam. Molestias natus facilis aut alias ducimus cum excepturi deleniti. Facere commodi natus voluptas maiores necessitatibus ab dolorem voluptatum.
|
|
2566
|
-
slug: product-19994
|
|
2559
|
+
name: Product 194445
|
|
2560
|
+
slug: product-194445
|
|
2567
2561
|
meta_description:
|
|
2568
2562
|
meta_keywords:
|
|
2569
2563
|
variant_count: 0
|
|
2570
|
-
available_on: '2025-03-
|
|
2571
|
-
created_at: '2026-03-
|
|
2572
|
-
updated_at: '2026-03-
|
|
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'
|
|
2573
2567
|
purchasable: true
|
|
2574
2568
|
in_stock: false
|
|
2575
2569
|
backorderable: true
|
|
2576
2570
|
available: true
|
|
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.
|
|
2587
|
+
description_html: |-
|
|
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.
|
|
2577
2592
|
default_variant_id: variant_UkLWZg9DAJ
|
|
2578
2593
|
thumbnail_url:
|
|
2579
2594
|
tags: []
|
|
@@ -2631,7 +2646,7 @@ paths:
|
|
|
2631
2646
|
get:
|
|
2632
2647
|
summary: List countries
|
|
2633
2648
|
tags:
|
|
2634
|
-
-
|
|
2649
|
+
- Markets
|
|
2635
2650
|
security:
|
|
2636
2651
|
- api_key: []
|
|
2637
2652
|
description: Returns countries available in the store. Use ?expand=market to
|
|
@@ -2669,7 +2684,7 @@ paths:
|
|
|
2669
2684
|
example:
|
|
2670
2685
|
data:
|
|
2671
2686
|
- iso: DE
|
|
2672
|
-
iso3:
|
|
2687
|
+
iso3: IS18
|
|
2673
2688
|
name: Germany
|
|
2674
2689
|
states_required: false
|
|
2675
2690
|
zipcode_required: true
|
|
@@ -2701,7 +2716,7 @@ paths:
|
|
|
2701
2716
|
get:
|
|
2702
2717
|
summary: Get a country
|
|
2703
2718
|
tags:
|
|
2704
|
-
-
|
|
2719
|
+
- Markets
|
|
2705
2720
|
security:
|
|
2706
2721
|
- api_key: []
|
|
2707
2722
|
description: Returns a single country by ISO code. Supports ?expand=states for
|
|
@@ -2839,9 +2854,9 @@ paths:
|
|
|
2839
2854
|
application/json:
|
|
2840
2855
|
example:
|
|
2841
2856
|
id: cart_UkLWZg9DAJ
|
|
2842
|
-
number:
|
|
2843
|
-
token:
|
|
2844
|
-
email:
|
|
2857
|
+
number: R111812114
|
|
2858
|
+
token: jArnxtk7otfbf1TmZrH7FSft9GJ5E6sHGNg
|
|
2859
|
+
email: jeri@pagac.biz
|
|
2845
2860
|
customer_note:
|
|
2846
2861
|
currency: USD
|
|
2847
2862
|
locale: en
|
|
@@ -2862,8 +2877,8 @@ paths:
|
|
|
2862
2877
|
display_total: "$110.00"
|
|
2863
2878
|
delivery_total: '100.0'
|
|
2864
2879
|
display_delivery_total: "$100.00"
|
|
2865
|
-
created_at: '2026-03-
|
|
2866
|
-
updated_at: '2026-03-
|
|
2880
|
+
created_at: '2026-03-22T19:16:13.503Z'
|
|
2881
|
+
updated_at: '2026-03-22T19:16:13.623Z'
|
|
2867
2882
|
current_step: address
|
|
2868
2883
|
completed_steps: []
|
|
2869
2884
|
requirements: []
|
|
@@ -2874,8 +2889,8 @@ paths:
|
|
|
2874
2889
|
variant_id: variant_UkLWZg9DAJ
|
|
2875
2890
|
quantity: 1
|
|
2876
2891
|
currency: USD
|
|
2877
|
-
name: Product
|
|
2878
|
-
slug: product-
|
|
2892
|
+
name: Product 239007
|
|
2893
|
+
slug: product-239007
|
|
2879
2894
|
options_text: ''
|
|
2880
2895
|
price: '10.0'
|
|
2881
2896
|
display_price: "$10.00"
|
|
@@ -2894,21 +2909,21 @@ paths:
|
|
|
2894
2909
|
discounted_amount: '10.0'
|
|
2895
2910
|
display_discounted_amount: "$10.00"
|
|
2896
2911
|
display_compare_at_amount: "$0.00"
|
|
2897
|
-
created_at: '2026-03-
|
|
2898
|
-
updated_at: '2026-03-
|
|
2912
|
+
created_at: '2026-03-22T19:16:13.538Z'
|
|
2913
|
+
updated_at: '2026-03-22T19:16:13.538Z'
|
|
2899
2914
|
compare_at_amount:
|
|
2900
2915
|
thumbnail_url:
|
|
2901
2916
|
option_values: []
|
|
2902
2917
|
digital_links: []
|
|
2903
2918
|
fulfillments:
|
|
2904
2919
|
- id: ful_UkLWZg9DAJ
|
|
2905
|
-
number:
|
|
2920
|
+
number: H67163703191
|
|
2906
2921
|
tracking: U10000
|
|
2907
2922
|
tracking_url:
|
|
2908
2923
|
cost: '100.0'
|
|
2909
2924
|
display_cost: "$100.00"
|
|
2910
|
-
created_at: '2026-03-
|
|
2911
|
-
updated_at: '2026-03-
|
|
2925
|
+
created_at: '2026-03-22T19:16:13.545Z'
|
|
2926
|
+
updated_at: '2026-03-22T19:16:13.561Z'
|
|
2912
2927
|
status: pending
|
|
2913
2928
|
fulfillment_type: shipping
|
|
2914
2929
|
fulfilled_at:
|
|
@@ -2922,14 +2937,14 @@ paths:
|
|
|
2922
2937
|
code: UPS_GROUND
|
|
2923
2938
|
stock_location:
|
|
2924
2939
|
id: sloc_UkLWZg9DAJ
|
|
2925
|
-
state_abbr:
|
|
2926
|
-
name:
|
|
2940
|
+
state_abbr: STATE_ABBR_80
|
|
2941
|
+
name: Judith Stokes
|
|
2927
2942
|
address1: 1600 Pennsylvania Ave NW
|
|
2928
2943
|
city: Washington
|
|
2929
2944
|
zipcode: '20500'
|
|
2930
2945
|
country_iso: US
|
|
2931
2946
|
country_name: United States of America
|
|
2932
|
-
state_text:
|
|
2947
|
+
state_text: STATE_ABBR_80
|
|
2933
2948
|
delivery_rates:
|
|
2934
2949
|
- id: dr_UkLWZg9DAJ
|
|
2935
2950
|
delivery_method_id: dm_UkLWZg9DAJ
|
|
@@ -2944,12 +2959,12 @@ paths:
|
|
|
2944
2959
|
payments:
|
|
2945
2960
|
- id: py_UkLWZg9DAJ
|
|
2946
2961
|
payment_method_id: pm_UkLWZg9DAJ
|
|
2947
|
-
response_code: 1-SC-
|
|
2948
|
-
number:
|
|
2962
|
+
response_code: 1-SC-20260322191613614226
|
|
2963
|
+
number: P3WSGVVA
|
|
2949
2964
|
amount: '50.0'
|
|
2950
2965
|
display_amount: "$50.00"
|
|
2951
|
-
created_at: '2026-03-
|
|
2952
|
-
updated_at: '2026-03-
|
|
2966
|
+
created_at: '2026-03-22T19:16:13.616Z'
|
|
2967
|
+
updated_at: '2026-03-22T19:16:13.616Z'
|
|
2953
2968
|
status: checkout
|
|
2954
2969
|
source_type: store_credit
|
|
2955
2970
|
source_id: credit_UkLWZg9DAJ
|
|
@@ -2973,7 +2988,7 @@ paths:
|
|
|
2973
2988
|
first_name: John
|
|
2974
2989
|
last_name: Doe
|
|
2975
2990
|
full_name: John Doe
|
|
2976
|
-
address1:
|
|
2991
|
+
address1: 72 Lovely Street
|
|
2977
2992
|
address2: Northwest
|
|
2978
2993
|
postal_code: '35005'
|
|
2979
2994
|
city: Herndon
|
|
@@ -2981,16 +2996,18 @@ paths:
|
|
|
2981
2996
|
company: Company
|
|
2982
2997
|
country_name: United States of America
|
|
2983
2998
|
country_iso: US
|
|
2984
|
-
state_text:
|
|
2985
|
-
state_abbr:
|
|
2999
|
+
state_text: STATE_ABBR_82
|
|
3000
|
+
state_abbr: STATE_ABBR_82
|
|
2986
3001
|
quick_checkout: false
|
|
2987
|
-
|
|
3002
|
+
is_default_billing: false
|
|
3003
|
+
is_default_shipping: false
|
|
3004
|
+
state_name: STATE_NAME_82
|
|
2988
3005
|
shipping_address:
|
|
2989
3006
|
id: addr_VqXmZF31wY
|
|
2990
3007
|
first_name: John
|
|
2991
3008
|
last_name: Doe
|
|
2992
3009
|
full_name: John Doe
|
|
2993
|
-
address1:
|
|
3010
|
+
address1: 73 Lovely Street
|
|
2994
3011
|
address2: Northwest
|
|
2995
3012
|
postal_code: '35005'
|
|
2996
3013
|
city: Herndon
|
|
@@ -2998,10 +3015,12 @@ paths:
|
|
|
2998
3015
|
company: Company
|
|
2999
3016
|
country_name: United States of America
|
|
3000
3017
|
country_iso: US
|
|
3001
|
-
state_text:
|
|
3002
|
-
state_abbr:
|
|
3018
|
+
state_text: STATE_ABBR_83
|
|
3019
|
+
state_abbr: STATE_ABBR_83
|
|
3003
3020
|
quick_checkout: false
|
|
3004
|
-
|
|
3021
|
+
is_default_billing: false
|
|
3022
|
+
is_default_shipping: false
|
|
3023
|
+
state_name: STATE_NAME_83
|
|
3005
3024
|
payment_methods:
|
|
3006
3025
|
- id: pm_UkLWZg9DAJ
|
|
3007
3026
|
name: Store Credit
|
|
@@ -3093,9 +3112,9 @@ paths:
|
|
|
3093
3112
|
application/json:
|
|
3094
3113
|
example:
|
|
3095
3114
|
id: cart_UkLWZg9DAJ
|
|
3096
|
-
number:
|
|
3097
|
-
token:
|
|
3098
|
-
email:
|
|
3115
|
+
number: R351665324
|
|
3116
|
+
token: yr1PT18pHkfpR5N9iHSaYXToGPpVQACs2UA
|
|
3117
|
+
email: mitch.parisian@lubowitz.co.uk
|
|
3099
3118
|
customer_note:
|
|
3100
3119
|
currency: USD
|
|
3101
3120
|
locale: en
|
|
@@ -3116,8 +3135,8 @@ paths:
|
|
|
3116
3135
|
display_total: "$110.00"
|
|
3117
3136
|
delivery_total: '100.0'
|
|
3118
3137
|
display_delivery_total: "$100.00"
|
|
3119
|
-
created_at: '2026-03-
|
|
3120
|
-
updated_at: '2026-03-
|
|
3138
|
+
created_at: '2026-03-22T19:16:14.856Z'
|
|
3139
|
+
updated_at: '2026-03-22T19:16:15.010Z'
|
|
3121
3140
|
current_step: address
|
|
3122
3141
|
completed_steps: []
|
|
3123
3142
|
requirements:
|
|
@@ -3131,8 +3150,8 @@ paths:
|
|
|
3131
3150
|
variant_id: variant_UkLWZg9DAJ
|
|
3132
3151
|
quantity: 1
|
|
3133
3152
|
currency: USD
|
|
3134
|
-
name: Product
|
|
3135
|
-
slug: product-
|
|
3153
|
+
name: Product 252616
|
|
3154
|
+
slug: product-252616
|
|
3136
3155
|
options_text: ''
|
|
3137
3156
|
price: '10.0'
|
|
3138
3157
|
display_price: "$10.00"
|
|
@@ -3151,21 +3170,21 @@ paths:
|
|
|
3151
3170
|
discounted_amount: '10.0'
|
|
3152
3171
|
display_discounted_amount: "$10.00"
|
|
3153
3172
|
display_compare_at_amount: "$0.00"
|
|
3154
|
-
created_at: '2026-03-
|
|
3155
|
-
updated_at: '2026-03-
|
|
3173
|
+
created_at: '2026-03-22T19:16:14.901Z'
|
|
3174
|
+
updated_at: '2026-03-22T19:16:15.004Z'
|
|
3156
3175
|
compare_at_amount:
|
|
3157
3176
|
thumbnail_url:
|
|
3158
3177
|
option_values: []
|
|
3159
3178
|
digital_links: []
|
|
3160
3179
|
fulfillments:
|
|
3161
3180
|
- id: ful_UkLWZg9DAJ
|
|
3162
|
-
number:
|
|
3181
|
+
number: H07525191421
|
|
3163
3182
|
tracking: U10000
|
|
3164
3183
|
tracking_url:
|
|
3165
3184
|
cost: '100.0'
|
|
3166
3185
|
display_cost: "$100.00"
|
|
3167
|
-
created_at: '2026-03-
|
|
3168
|
-
updated_at: '2026-03-
|
|
3186
|
+
created_at: '2026-03-22T19:16:14.914Z'
|
|
3187
|
+
updated_at: '2026-03-22T19:16:14.933Z'
|
|
3169
3188
|
status: pending
|
|
3170
3189
|
fulfillment_type: shipping
|
|
3171
3190
|
fulfilled_at:
|
|
@@ -3179,14 +3198,14 @@ paths:
|
|
|
3179
3198
|
code: UPS_GROUND
|
|
3180
3199
|
stock_location:
|
|
3181
3200
|
id: sloc_UkLWZg9DAJ
|
|
3182
|
-
state_abbr:
|
|
3183
|
-
name:
|
|
3201
|
+
state_abbr: STATE_ABBR_88
|
|
3202
|
+
name: Lakendra Ratke
|
|
3184
3203
|
address1: 1600 Pennsylvania Ave NW
|
|
3185
3204
|
city: Washington
|
|
3186
3205
|
zipcode: '20500'
|
|
3187
3206
|
country_iso: US
|
|
3188
3207
|
country_name: United States of America
|
|
3189
|
-
state_text:
|
|
3208
|
+
state_text: STATE_ABBR_88
|
|
3190
3209
|
delivery_rates:
|
|
3191
3210
|
- id: dr_UkLWZg9DAJ
|
|
3192
3211
|
delivery_method_id: dm_UkLWZg9DAJ
|
|
@@ -3204,7 +3223,7 @@ paths:
|
|
|
3204
3223
|
first_name: John
|
|
3205
3224
|
last_name: Doe
|
|
3206
3225
|
full_name: John Doe
|
|
3207
|
-
address1:
|
|
3226
|
+
address1: 80 Lovely Street
|
|
3208
3227
|
address2: Northwest
|
|
3209
3228
|
postal_code: '35005'
|
|
3210
3229
|
city: Herndon
|
|
@@ -3212,16 +3231,18 @@ paths:
|
|
|
3212
3231
|
company: Company
|
|
3213
3232
|
country_name: United States of America
|
|
3214
3233
|
country_iso: US
|
|
3215
|
-
state_text:
|
|
3216
|
-
state_abbr:
|
|
3234
|
+
state_text: STATE_ABBR_90
|
|
3235
|
+
state_abbr: STATE_ABBR_90
|
|
3217
3236
|
quick_checkout: false
|
|
3218
|
-
|
|
3237
|
+
is_default_billing: false
|
|
3238
|
+
is_default_shipping: false
|
|
3239
|
+
state_name: STATE_NAME_90
|
|
3219
3240
|
shipping_address:
|
|
3220
3241
|
id: addr_VqXmZF31wY
|
|
3221
3242
|
first_name: John
|
|
3222
3243
|
last_name: Doe
|
|
3223
3244
|
full_name: John Doe
|
|
3224
|
-
address1:
|
|
3245
|
+
address1: 81 Lovely Street
|
|
3225
3246
|
address2: Northwest
|
|
3226
3247
|
postal_code: '35005'
|
|
3227
3248
|
city: Herndon
|
|
@@ -3229,10 +3250,12 @@ paths:
|
|
|
3229
3250
|
company: Company
|
|
3230
3251
|
country_name: United States of America
|
|
3231
3252
|
country_iso: US
|
|
3232
|
-
state_text:
|
|
3233
|
-
state_abbr:
|
|
3253
|
+
state_text: STATE_ABBR_91
|
|
3254
|
+
state_abbr: STATE_ABBR_91
|
|
3234
3255
|
quick_checkout: false
|
|
3235
|
-
|
|
3256
|
+
is_default_billing: false
|
|
3257
|
+
is_default_shipping: false
|
|
3258
|
+
state_name: STATE_NAME_91
|
|
3236
3259
|
payment_methods: []
|
|
3237
3260
|
schema:
|
|
3238
3261
|
"$ref": "#/components/schemas/Cart"
|
|
@@ -3246,7 +3269,7 @@ paths:
|
|
|
3246
3269
|
message: The coupon code you entered doesn't exist. Please try again.
|
|
3247
3270
|
schema:
|
|
3248
3271
|
"$ref": "#/components/schemas/ErrorResponse"
|
|
3249
|
-
"/api/v3/store/
|
|
3272
|
+
"/api/v3/store/customers/me/credit_cards":
|
|
3250
3273
|
get:
|
|
3251
3274
|
summary: List saved credit cards
|
|
3252
3275
|
tags:
|
|
@@ -3341,7 +3364,7 @@ paths:
|
|
|
3341
3364
|
message: Authentication required
|
|
3342
3365
|
schema:
|
|
3343
3366
|
"$ref": "#/components/schemas/ErrorResponse"
|
|
3344
|
-
"/api/v3/store/
|
|
3367
|
+
"/api/v3/store/customers/me/credit_cards/{id}":
|
|
3345
3368
|
get:
|
|
3346
3369
|
summary: Get a credit card
|
|
3347
3370
|
tags:
|
|
@@ -3468,7 +3491,7 @@ paths:
|
|
|
3468
3491
|
get:
|
|
3469
3492
|
summary: List supported currencies
|
|
3470
3493
|
tags:
|
|
3471
|
-
-
|
|
3494
|
+
- Markets
|
|
3472
3495
|
security:
|
|
3473
3496
|
- api_key: []
|
|
3474
3497
|
description: Returns currencies supported by the store (derived from markets)
|
|
@@ -3529,7 +3552,7 @@ paths:
|
|
|
3529
3552
|
message: Valid API key required
|
|
3530
3553
|
schema:
|
|
3531
3554
|
"$ref": "#/components/schemas/ErrorResponse"
|
|
3532
|
-
"/api/v3/store/
|
|
3555
|
+
"/api/v3/store/customers/me/password_resets":
|
|
3533
3556
|
post:
|
|
3534
3557
|
summary: Request a password reset
|
|
3535
3558
|
tags:
|
|
@@ -3601,7 +3624,7 @@ paths:
|
|
|
3601
3624
|
link. Validated against the store's allowed origins.
|
|
3602
3625
|
required:
|
|
3603
3626
|
- email
|
|
3604
|
-
"/api/v3/store/
|
|
3627
|
+
"/api/v3/store/customers/me/password_resets/{token}":
|
|
3605
3628
|
patch:
|
|
3606
3629
|
summary: Reset password with token
|
|
3607
3630
|
tags:
|
|
@@ -3646,17 +3669,17 @@ paths:
|
|
|
3646
3669
|
content:
|
|
3647
3670
|
application/json:
|
|
3648
3671
|
example:
|
|
3649
|
-
token: eyJhbGciOiJIUzI1NiJ9.
|
|
3650
|
-
refresh_token:
|
|
3672
|
+
token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6IjE3MzUwOGNlLWFlMTItNDc4MC1iOTE2LTI0NDBiMTNhZjhhMyIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjEwNTgwfQ.ZyIDnOmSuxWpMFBgE9nnb6RHhXU3aD9QMzmQsMe5_w0
|
|
3673
|
+
refresh_token: 692saDqDpnauiniHXzAzLbBv
|
|
3651
3674
|
user:
|
|
3652
3675
|
id: cus_UkLWZg9DAJ
|
|
3653
3676
|
email: customer@example.com
|
|
3654
|
-
first_name:
|
|
3655
|
-
last_name:
|
|
3677
|
+
first_name: Sima
|
|
3678
|
+
last_name: Hettinger
|
|
3656
3679
|
phone:
|
|
3657
3680
|
accepts_email_marketing: false
|
|
3658
|
-
created_at: '2026-03-
|
|
3659
|
-
updated_at: '2026-03-
|
|
3681
|
+
created_at: '2026-03-22T19:16:19.971Z'
|
|
3682
|
+
updated_at: '2026-03-22T19:16:20.245Z'
|
|
3660
3683
|
addresses: []
|
|
3661
3684
|
default_billing_address:
|
|
3662
3685
|
default_shipping_address:
|
|
@@ -3701,11 +3724,11 @@ paths:
|
|
|
3701
3724
|
required:
|
|
3702
3725
|
- password
|
|
3703
3726
|
- password_confirmation
|
|
3704
|
-
"/api/v3/store/
|
|
3727
|
+
"/api/v3/store/customers/me/orders":
|
|
3705
3728
|
get:
|
|
3706
3729
|
summary: List orders
|
|
3707
3730
|
tags:
|
|
3708
|
-
-
|
|
3731
|
+
- Customers
|
|
3709
3732
|
security:
|
|
3710
3733
|
- api_key: []
|
|
3711
3734
|
bearer_auth: []
|
|
@@ -3744,8 +3767,8 @@ paths:
|
|
|
3744
3767
|
example:
|
|
3745
3768
|
data:
|
|
3746
3769
|
- id: or_UkLWZg9DAJ
|
|
3747
|
-
number:
|
|
3748
|
-
email:
|
|
3770
|
+
number: R897541246
|
|
3771
|
+
email: porter.greenholt@kassulke.name
|
|
3749
3772
|
customer_note:
|
|
3750
3773
|
currency: USD
|
|
3751
3774
|
locale: en
|
|
@@ -3768,17 +3791,17 @@ paths:
|
|
|
3768
3791
|
display_delivery_total: "$100.00"
|
|
3769
3792
|
fulfillment_status:
|
|
3770
3793
|
payment_status:
|
|
3771
|
-
completed_at: '2026-03-
|
|
3772
|
-
created_at: '2026-03-
|
|
3773
|
-
updated_at: '2026-03-
|
|
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'
|
|
3774
3797
|
discounts: []
|
|
3775
3798
|
items:
|
|
3776
3799
|
- id: li_UkLWZg9DAJ
|
|
3777
3800
|
variant_id: variant_UkLWZg9DAJ
|
|
3778
3801
|
quantity: 1
|
|
3779
3802
|
currency: USD
|
|
3780
|
-
name: Product
|
|
3781
|
-
slug: product-
|
|
3803
|
+
name: Product 279313
|
|
3804
|
+
slug: product-279313
|
|
3782
3805
|
options_text: ''
|
|
3783
3806
|
price: '10.0'
|
|
3784
3807
|
display_price: "$10.00"
|
|
@@ -3797,21 +3820,21 @@ paths:
|
|
|
3797
3820
|
discounted_amount: '10.0'
|
|
3798
3821
|
display_discounted_amount: "$10.00"
|
|
3799
3822
|
display_compare_at_amount: "$0.00"
|
|
3800
|
-
created_at: '2026-03-
|
|
3801
|
-
updated_at: '2026-03-
|
|
3823
|
+
created_at: '2026-03-22T19:16:21.146Z'
|
|
3824
|
+
updated_at: '2026-03-22T19:16:21.146Z'
|
|
3802
3825
|
compare_at_amount:
|
|
3803
3826
|
thumbnail_url:
|
|
3804
3827
|
option_values: []
|
|
3805
3828
|
digital_links: []
|
|
3806
3829
|
fulfillments:
|
|
3807
3830
|
- id: ful_UkLWZg9DAJ
|
|
3808
|
-
number:
|
|
3831
|
+
number: H07819924986
|
|
3809
3832
|
tracking: U10000
|
|
3810
3833
|
tracking_url:
|
|
3811
3834
|
cost: '100.0'
|
|
3812
3835
|
display_cost: "$100.00"
|
|
3813
|
-
created_at: '2026-03-
|
|
3814
|
-
updated_at: '2026-03-
|
|
3836
|
+
created_at: '2026-03-22T19:16:21.151Z'
|
|
3837
|
+
updated_at: '2026-03-22T19:16:21.166Z'
|
|
3815
3838
|
status: pending
|
|
3816
3839
|
fulfillment_type: shipping
|
|
3817
3840
|
fulfilled_at:
|
|
@@ -3825,14 +3848,14 @@ paths:
|
|
|
3825
3848
|
code: UPS_GROUND
|
|
3826
3849
|
stock_location:
|
|
3827
3850
|
id: sloc_UkLWZg9DAJ
|
|
3828
|
-
state_abbr:
|
|
3829
|
-
name:
|
|
3851
|
+
state_abbr: STATE_ABBR_108
|
|
3852
|
+
name: Beula Stark
|
|
3830
3853
|
address1: 1600 Pennsylvania Ave NW
|
|
3831
3854
|
city: Washington
|
|
3832
3855
|
zipcode: '20500'
|
|
3833
3856
|
country_iso: US
|
|
3834
3857
|
country_name: United States of America
|
|
3835
|
-
state_text:
|
|
3858
|
+
state_text: STATE_ABBR_108
|
|
3836
3859
|
delivery_rates:
|
|
3837
3860
|
- id: dr_gbHJdmfrXB
|
|
3838
3861
|
delivery_method_id: dm_UkLWZg9DAJ
|
|
@@ -3850,7 +3873,7 @@ paths:
|
|
|
3850
3873
|
first_name: John
|
|
3851
3874
|
last_name: Doe
|
|
3852
3875
|
full_name: John Doe
|
|
3853
|
-
address1:
|
|
3876
|
+
address1: 100 Lovely Street
|
|
3854
3877
|
address2: Northwest
|
|
3855
3878
|
postal_code: '35005'
|
|
3856
3879
|
city: Herndon
|
|
@@ -3858,16 +3881,18 @@ paths:
|
|
|
3858
3881
|
company: Company
|
|
3859
3882
|
country_name: United States of America
|
|
3860
3883
|
country_iso: US
|
|
3861
|
-
state_text:
|
|
3862
|
-
state_abbr:
|
|
3884
|
+
state_text: STATE_ABBR_110
|
|
3885
|
+
state_abbr: STATE_ABBR_110
|
|
3863
3886
|
quick_checkout: false
|
|
3864
|
-
|
|
3887
|
+
is_default_billing: false
|
|
3888
|
+
is_default_shipping: false
|
|
3889
|
+
state_name: STATE_NAME_110
|
|
3865
3890
|
shipping_address:
|
|
3866
3891
|
id: addr_VqXmZF31wY
|
|
3867
3892
|
first_name: John
|
|
3868
3893
|
last_name: Doe
|
|
3869
3894
|
full_name: John Doe
|
|
3870
|
-
address1:
|
|
3895
|
+
address1: 101 Lovely Street
|
|
3871
3896
|
address2: Northwest
|
|
3872
3897
|
postal_code: '35005'
|
|
3873
3898
|
city: Herndon
|
|
@@ -3875,10 +3900,12 @@ paths:
|
|
|
3875
3900
|
company: Company
|
|
3876
3901
|
country_name: United States of America
|
|
3877
3902
|
country_iso: US
|
|
3878
|
-
state_text:
|
|
3879
|
-
state_abbr:
|
|
3903
|
+
state_text: STATE_ABBR_111
|
|
3904
|
+
state_abbr: STATE_ABBR_111
|
|
3880
3905
|
quick_checkout: false
|
|
3881
|
-
|
|
3906
|
+
is_default_billing: false
|
|
3907
|
+
is_default_shipping: false
|
|
3908
|
+
state_name: STATE_NAME_111
|
|
3882
3909
|
meta:
|
|
3883
3910
|
page: 1
|
|
3884
3911
|
limit: 25
|
|
@@ -3899,11 +3926,11 @@ paths:
|
|
|
3899
3926
|
message: Authentication required
|
|
3900
3927
|
schema:
|
|
3901
3928
|
"$ref": "#/components/schemas/ErrorResponse"
|
|
3902
|
-
"/api/v3/store/
|
|
3929
|
+
"/api/v3/store/customers/me/orders/{id}":
|
|
3903
3930
|
get:
|
|
3904
3931
|
summary: Get an order
|
|
3905
3932
|
tags:
|
|
3906
|
-
-
|
|
3933
|
+
- Customers
|
|
3907
3934
|
security:
|
|
3908
3935
|
- api_key: []
|
|
3909
3936
|
bearer_auth: []
|
|
@@ -3946,8 +3973,8 @@ paths:
|
|
|
3946
3973
|
application/json:
|
|
3947
3974
|
example:
|
|
3948
3975
|
id: or_UkLWZg9DAJ
|
|
3949
|
-
number:
|
|
3950
|
-
email:
|
|
3976
|
+
number: R991262010
|
|
3977
|
+
email: gale@becker.us
|
|
3951
3978
|
customer_note:
|
|
3952
3979
|
currency: USD
|
|
3953
3980
|
locale: en
|
|
@@ -3970,17 +3997,17 @@ paths:
|
|
|
3970
3997
|
display_delivery_total: "$100.00"
|
|
3971
3998
|
fulfillment_status:
|
|
3972
3999
|
payment_status:
|
|
3973
|
-
completed_at: '2026-03-
|
|
3974
|
-
created_at: '2026-03-
|
|
3975
|
-
updated_at: '2026-03-
|
|
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'
|
|
3976
4003
|
discounts: []
|
|
3977
4004
|
items:
|
|
3978
4005
|
- id: li_UkLWZg9DAJ
|
|
3979
4006
|
variant_id: variant_UkLWZg9DAJ
|
|
3980
4007
|
quantity: 1
|
|
3981
4008
|
currency: USD
|
|
3982
|
-
name: Product
|
|
3983
|
-
slug: product-
|
|
4009
|
+
name: Product 294135
|
|
4010
|
+
slug: product-294135
|
|
3984
4011
|
options_text: ''
|
|
3985
4012
|
price: '10.0'
|
|
3986
4013
|
display_price: "$10.00"
|
|
@@ -3999,21 +4026,21 @@ paths:
|
|
|
3999
4026
|
discounted_amount: '10.0'
|
|
4000
4027
|
display_discounted_amount: "$10.00"
|
|
4001
4028
|
display_compare_at_amount: "$0.00"
|
|
4002
|
-
created_at: '2026-03-
|
|
4003
|
-
updated_at: '2026-03-
|
|
4029
|
+
created_at: '2026-03-22T19:16:21.834Z'
|
|
4030
|
+
updated_at: '2026-03-22T19:16:21.834Z'
|
|
4004
4031
|
compare_at_amount:
|
|
4005
4032
|
thumbnail_url:
|
|
4006
4033
|
option_values: []
|
|
4007
4034
|
digital_links: []
|
|
4008
4035
|
fulfillments:
|
|
4009
4036
|
- id: ful_UkLWZg9DAJ
|
|
4010
|
-
number:
|
|
4037
|
+
number: H30965585470
|
|
4011
4038
|
tracking: U10000
|
|
4012
4039
|
tracking_url:
|
|
4013
4040
|
cost: '100.0'
|
|
4014
4041
|
display_cost: "$100.00"
|
|
4015
|
-
created_at: '2026-03-
|
|
4016
|
-
updated_at: '2026-03-
|
|
4042
|
+
created_at: '2026-03-22T19:16:21.839Z'
|
|
4043
|
+
updated_at: '2026-03-22T19:16:21.855Z'
|
|
4017
4044
|
status: pending
|
|
4018
4045
|
fulfillment_type: shipping
|
|
4019
4046
|
fulfilled_at:
|
|
@@ -4027,14 +4054,14 @@ paths:
|
|
|
4027
4054
|
code: UPS_GROUND
|
|
4028
4055
|
stock_location:
|
|
4029
4056
|
id: sloc_UkLWZg9DAJ
|
|
4030
|
-
state_abbr:
|
|
4031
|
-
name:
|
|
4057
|
+
state_abbr: STATE_ABBR_114
|
|
4058
|
+
name: Lashonda Brekke
|
|
4032
4059
|
address1: 1600 Pennsylvania Ave NW
|
|
4033
4060
|
city: Washington
|
|
4034
4061
|
zipcode: '20500'
|
|
4035
4062
|
country_iso: US
|
|
4036
4063
|
country_name: United States of America
|
|
4037
|
-
state_text:
|
|
4064
|
+
state_text: STATE_ABBR_114
|
|
4038
4065
|
delivery_rates:
|
|
4039
4066
|
- id: dr_gbHJdmfrXB
|
|
4040
4067
|
delivery_method_id: dm_UkLWZg9DAJ
|
|
@@ -4052,7 +4079,7 @@ paths:
|
|
|
4052
4079
|
first_name: John
|
|
4053
4080
|
last_name: Doe
|
|
4054
4081
|
full_name: John Doe
|
|
4055
|
-
address1:
|
|
4082
|
+
address1: 106 Lovely Street
|
|
4056
4083
|
address2: Northwest
|
|
4057
4084
|
postal_code: '35005'
|
|
4058
4085
|
city: Herndon
|
|
@@ -4060,16 +4087,18 @@ paths:
|
|
|
4060
4087
|
company: Company
|
|
4061
4088
|
country_name: United States of America
|
|
4062
4089
|
country_iso: US
|
|
4063
|
-
state_text:
|
|
4064
|
-
state_abbr:
|
|
4090
|
+
state_text: STATE_ABBR_116
|
|
4091
|
+
state_abbr: STATE_ABBR_116
|
|
4065
4092
|
quick_checkout: false
|
|
4066
|
-
|
|
4093
|
+
is_default_billing: false
|
|
4094
|
+
is_default_shipping: false
|
|
4095
|
+
state_name: STATE_NAME_116
|
|
4067
4096
|
shipping_address:
|
|
4068
4097
|
id: addr_VqXmZF31wY
|
|
4069
4098
|
first_name: John
|
|
4070
4099
|
last_name: Doe
|
|
4071
4100
|
full_name: John Doe
|
|
4072
|
-
address1:
|
|
4101
|
+
address1: 107 Lovely Street
|
|
4073
4102
|
address2: Northwest
|
|
4074
4103
|
postal_code: '35005'
|
|
4075
4104
|
city: Herndon
|
|
@@ -4077,10 +4106,12 @@ paths:
|
|
|
4077
4106
|
company: Company
|
|
4078
4107
|
country_name: United States of America
|
|
4079
4108
|
country_iso: US
|
|
4080
|
-
state_text:
|
|
4081
|
-
state_abbr:
|
|
4109
|
+
state_text: STATE_ABBR_117
|
|
4110
|
+
state_abbr: STATE_ABBR_117
|
|
4082
4111
|
quick_checkout: false
|
|
4083
|
-
|
|
4112
|
+
is_default_billing: false
|
|
4113
|
+
is_default_shipping: false
|
|
4114
|
+
state_name: STATE_NAME_117
|
|
4084
4115
|
schema:
|
|
4085
4116
|
"$ref": "#/components/schemas/Order"
|
|
4086
4117
|
'404':
|
|
@@ -4134,8 +4165,8 @@ paths:
|
|
|
4134
4165
|
content:
|
|
4135
4166
|
application/json:
|
|
4136
4167
|
example:
|
|
4137
|
-
token: eyJhbGciOiJIUzI1NiJ9.
|
|
4138
|
-
refresh_token:
|
|
4168
|
+
token: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX3R5cGUiOiJjdXN0b21lciIsImp0aSI6Ijg5OGIyNjJiLTk3N2UtNGNiMy04MDFiLWY1NjQ3NjcxNWNmYSIsImlzcyI6InNwcmVlIiwiYXVkIjoic3RvcmVfYXBpIiwiZXhwIjoxNzc0MjEwNTgzfQ.olTx1W7wAbh052GzXI4hJCNKsGQcruOczney544Bz84
|
|
4169
|
+
refresh_token: rar85njfJxzaksBzx851gCR4
|
|
4139
4170
|
user:
|
|
4140
4171
|
id: cus_UkLWZg9DAJ
|
|
4141
4172
|
email: newuser@example.com
|
|
@@ -4143,8 +4174,8 @@ paths:
|
|
|
4143
4174
|
last_name: Doe
|
|
4144
4175
|
phone: "+1234567890"
|
|
4145
4176
|
accepts_email_marketing: true
|
|
4146
|
-
created_at: '2026-03-
|
|
4147
|
-
updated_at: '2026-03-
|
|
4177
|
+
created_at: '2026-03-22T19:16:23.052Z'
|
|
4178
|
+
updated_at: '2026-03-22T19:16:23.052Z'
|
|
4148
4179
|
addresses: []
|
|
4149
4180
|
default_billing_address:
|
|
4150
4181
|
default_shipping_address:
|
|
@@ -4199,7 +4230,7 @@ paths:
|
|
|
4199
4230
|
required:
|
|
4200
4231
|
- email
|
|
4201
4232
|
- password
|
|
4202
|
-
"/api/v3/store/
|
|
4233
|
+
"/api/v3/store/customers/me":
|
|
4203
4234
|
get:
|
|
4204
4235
|
summary: Get current customer profile
|
|
4205
4236
|
tags:
|
|
@@ -4248,19 +4279,19 @@ paths:
|
|
|
4248
4279
|
application/json:
|
|
4249
4280
|
example:
|
|
4250
4281
|
id: cus_UkLWZg9DAJ
|
|
4251
|
-
email:
|
|
4252
|
-
first_name:
|
|
4253
|
-
last_name:
|
|
4282
|
+
email: edie@watsicaabbott.co.uk
|
|
4283
|
+
first_name: Suellen
|
|
4284
|
+
last_name: Kohler
|
|
4254
4285
|
phone: 555-555-0199
|
|
4255
4286
|
accepts_email_marketing: false
|
|
4256
|
-
created_at: '2026-03-
|
|
4257
|
-
updated_at: '2026-03-
|
|
4287
|
+
created_at: '2026-03-22T19:16:23.617Z'
|
|
4288
|
+
updated_at: '2026-03-22T19:16:23.889Z'
|
|
4258
4289
|
addresses:
|
|
4259
4290
|
- id: addr_gbHJdmfrXB
|
|
4260
4291
|
first_name: John
|
|
4261
4292
|
last_name: Doe
|
|
4262
4293
|
full_name: John Doe
|
|
4263
|
-
address1:
|
|
4294
|
+
address1: 113 Lovely Street
|
|
4264
4295
|
address2: Northwest
|
|
4265
4296
|
postal_code: '35005'
|
|
4266
4297
|
city: Herndon
|
|
@@ -4268,15 +4299,17 @@ paths:
|
|
|
4268
4299
|
company: Company
|
|
4269
4300
|
country_name: United States of America
|
|
4270
4301
|
country_iso: US
|
|
4271
|
-
state_text:
|
|
4272
|
-
state_abbr:
|
|
4302
|
+
state_text: STATE_ABBR_123
|
|
4303
|
+
state_abbr: STATE_ABBR_123
|
|
4273
4304
|
quick_checkout: false
|
|
4274
|
-
|
|
4305
|
+
is_default_billing: true
|
|
4306
|
+
is_default_shipping: false
|
|
4307
|
+
state_name: STATE_NAME_123
|
|
4275
4308
|
- id: addr_UkLWZg9DAJ
|
|
4276
4309
|
first_name: John
|
|
4277
4310
|
last_name: Doe
|
|
4278
4311
|
full_name: John Doe
|
|
4279
|
-
address1:
|
|
4312
|
+
address1: 112 Lovely Street
|
|
4280
4313
|
address2: Northwest
|
|
4281
4314
|
postal_code: '35005'
|
|
4282
4315
|
city: Herndon
|
|
@@ -4284,16 +4317,18 @@ paths:
|
|
|
4284
4317
|
company: Company
|
|
4285
4318
|
country_name: United States of America
|
|
4286
4319
|
country_iso: US
|
|
4287
|
-
state_text:
|
|
4288
|
-
state_abbr:
|
|
4320
|
+
state_text: STATE_ABBR_122
|
|
4321
|
+
state_abbr: STATE_ABBR_122
|
|
4289
4322
|
quick_checkout: false
|
|
4290
|
-
|
|
4323
|
+
is_default_billing: false
|
|
4324
|
+
is_default_shipping: true
|
|
4325
|
+
state_name: STATE_NAME_122
|
|
4291
4326
|
default_billing_address:
|
|
4292
4327
|
id: addr_gbHJdmfrXB
|
|
4293
4328
|
first_name: John
|
|
4294
4329
|
last_name: Doe
|
|
4295
4330
|
full_name: John Doe
|
|
4296
|
-
address1:
|
|
4331
|
+
address1: 113 Lovely Street
|
|
4297
4332
|
address2: Northwest
|
|
4298
4333
|
postal_code: '35005'
|
|
4299
4334
|
city: Herndon
|
|
@@ -4301,16 +4336,18 @@ paths:
|
|
|
4301
4336
|
company: Company
|
|
4302
4337
|
country_name: United States of America
|
|
4303
4338
|
country_iso: US
|
|
4304
|
-
state_text:
|
|
4305
|
-
state_abbr:
|
|
4339
|
+
state_text: STATE_ABBR_123
|
|
4340
|
+
state_abbr: STATE_ABBR_123
|
|
4306
4341
|
quick_checkout: false
|
|
4307
|
-
|
|
4342
|
+
is_default_billing: true
|
|
4343
|
+
is_default_shipping: false
|
|
4344
|
+
state_name: STATE_NAME_123
|
|
4308
4345
|
default_shipping_address:
|
|
4309
4346
|
id: addr_UkLWZg9DAJ
|
|
4310
4347
|
first_name: John
|
|
4311
4348
|
last_name: Doe
|
|
4312
4349
|
full_name: John Doe
|
|
4313
|
-
address1:
|
|
4350
|
+
address1: 112 Lovely Street
|
|
4314
4351
|
address2: Northwest
|
|
4315
4352
|
postal_code: '35005'
|
|
4316
4353
|
city: Herndon
|
|
@@ -4318,10 +4355,12 @@ paths:
|
|
|
4318
4355
|
company: Company
|
|
4319
4356
|
country_name: United States of America
|
|
4320
4357
|
country_iso: US
|
|
4321
|
-
state_text:
|
|
4322
|
-
state_abbr:
|
|
4358
|
+
state_text: STATE_ABBR_122
|
|
4359
|
+
state_abbr: STATE_ABBR_122
|
|
4323
4360
|
quick_checkout: false
|
|
4324
|
-
|
|
4361
|
+
is_default_billing: false
|
|
4362
|
+
is_default_shipping: true
|
|
4363
|
+
state_name: STATE_NAME_122
|
|
4325
4364
|
schema:
|
|
4326
4365
|
"$ref": "#/components/schemas/Customer"
|
|
4327
4366
|
'401':
|
|
@@ -4378,19 +4417,19 @@ paths:
|
|
|
4378
4417
|
application/json:
|
|
4379
4418
|
example:
|
|
4380
4419
|
id: cus_UkLWZg9DAJ
|
|
4381
|
-
email:
|
|
4420
|
+
email: margie_predovic@lynch.biz
|
|
4382
4421
|
first_name: Updated
|
|
4383
4422
|
last_name: Name
|
|
4384
4423
|
phone: 555-555-0199
|
|
4385
4424
|
accepts_email_marketing: false
|
|
4386
|
-
created_at: '2026-03-
|
|
4387
|
-
updated_at: '2026-03-
|
|
4425
|
+
created_at: '2026-03-22T19:16:24.180Z'
|
|
4426
|
+
updated_at: '2026-03-22T19:16:24.459Z'
|
|
4388
4427
|
addresses:
|
|
4389
4428
|
- id: addr_gbHJdmfrXB
|
|
4390
4429
|
first_name: John
|
|
4391
4430
|
last_name: Doe
|
|
4392
4431
|
full_name: John Doe
|
|
4393
|
-
address1:
|
|
4432
|
+
address1: 115 Lovely Street
|
|
4394
4433
|
address2: Northwest
|
|
4395
4434
|
postal_code: '35005'
|
|
4396
4435
|
city: Herndon
|
|
@@ -4398,15 +4437,17 @@ paths:
|
|
|
4398
4437
|
company: Company
|
|
4399
4438
|
country_name: United States of America
|
|
4400
4439
|
country_iso: US
|
|
4401
|
-
state_text:
|
|
4402
|
-
state_abbr:
|
|
4440
|
+
state_text: STATE_ABBR_125
|
|
4441
|
+
state_abbr: STATE_ABBR_125
|
|
4403
4442
|
quick_checkout: false
|
|
4404
|
-
|
|
4443
|
+
is_default_billing: true
|
|
4444
|
+
is_default_shipping: false
|
|
4445
|
+
state_name: STATE_NAME_125
|
|
4405
4446
|
- id: addr_UkLWZg9DAJ
|
|
4406
4447
|
first_name: John
|
|
4407
4448
|
last_name: Doe
|
|
4408
4449
|
full_name: John Doe
|
|
4409
|
-
address1:
|
|
4450
|
+
address1: 114 Lovely Street
|
|
4410
4451
|
address2: Northwest
|
|
4411
4452
|
postal_code: '35005'
|
|
4412
4453
|
city: Herndon
|
|
@@ -4414,16 +4455,18 @@ paths:
|
|
|
4414
4455
|
company: Company
|
|
4415
4456
|
country_name: United States of America
|
|
4416
4457
|
country_iso: US
|
|
4417
|
-
state_text:
|
|
4418
|
-
state_abbr:
|
|
4458
|
+
state_text: STATE_ABBR_124
|
|
4459
|
+
state_abbr: STATE_ABBR_124
|
|
4419
4460
|
quick_checkout: false
|
|
4420
|
-
|
|
4461
|
+
is_default_billing: false
|
|
4462
|
+
is_default_shipping: true
|
|
4463
|
+
state_name: STATE_NAME_124
|
|
4421
4464
|
default_billing_address:
|
|
4422
4465
|
id: addr_gbHJdmfrXB
|
|
4423
4466
|
first_name: John
|
|
4424
4467
|
last_name: Doe
|
|
4425
4468
|
full_name: John Doe
|
|
4426
|
-
address1:
|
|
4469
|
+
address1: 115 Lovely Street
|
|
4427
4470
|
address2: Northwest
|
|
4428
4471
|
postal_code: '35005'
|
|
4429
4472
|
city: Herndon
|
|
@@ -4431,16 +4474,18 @@ paths:
|
|
|
4431
4474
|
company: Company
|
|
4432
4475
|
country_name: United States of America
|
|
4433
4476
|
country_iso: US
|
|
4434
|
-
state_text:
|
|
4435
|
-
state_abbr:
|
|
4477
|
+
state_text: STATE_ABBR_125
|
|
4478
|
+
state_abbr: STATE_ABBR_125
|
|
4436
4479
|
quick_checkout: false
|
|
4437
|
-
|
|
4480
|
+
is_default_billing: true
|
|
4481
|
+
is_default_shipping: false
|
|
4482
|
+
state_name: STATE_NAME_125
|
|
4438
4483
|
default_shipping_address:
|
|
4439
4484
|
id: addr_UkLWZg9DAJ
|
|
4440
4485
|
first_name: John
|
|
4441
4486
|
last_name: Doe
|
|
4442
4487
|
full_name: John Doe
|
|
4443
|
-
address1:
|
|
4488
|
+
address1: 114 Lovely Street
|
|
4444
4489
|
address2: Northwest
|
|
4445
4490
|
postal_code: '35005'
|
|
4446
4491
|
city: Herndon
|
|
@@ -4448,10 +4493,12 @@ paths:
|
|
|
4448
4493
|
company: Company
|
|
4449
4494
|
country_name: United States of America
|
|
4450
4495
|
country_iso: US
|
|
4451
|
-
state_text:
|
|
4452
|
-
state_abbr:
|
|
4496
|
+
state_text: STATE_ABBR_124
|
|
4497
|
+
state_abbr: STATE_ABBR_124
|
|
4453
4498
|
quick_checkout: false
|
|
4454
|
-
|
|
4499
|
+
is_default_billing: false
|
|
4500
|
+
is_default_shipping: true
|
|
4501
|
+
state_name: STATE_NAME_124
|
|
4455
4502
|
schema:
|
|
4456
4503
|
"$ref": "#/components/schemas/Customer"
|
|
4457
4504
|
'422':
|
|
@@ -4549,101 +4596,6 @@ paths:
|
|
|
4549
4596
|
application/octet-stream:
|
|
4550
4597
|
schema:
|
|
4551
4598
|
"$ref": "#/components/schemas/ErrorResponse"
|
|
4552
|
-
"/api/v3/store/carts/{cart_id}/fulfillments":
|
|
4553
|
-
get:
|
|
4554
|
-
summary: List fulfillments
|
|
4555
|
-
tags:
|
|
4556
|
-
- Carts
|
|
4557
|
-
security:
|
|
4558
|
-
- api_key: []
|
|
4559
|
-
bearer_auth: []
|
|
4560
|
-
description: Returns all fulfillments with delivery rates for the cart.
|
|
4561
|
-
x-codeSamples:
|
|
4562
|
-
- lang: javascript
|
|
4563
|
-
label: Spree SDK
|
|
4564
|
-
source: |-
|
|
4565
|
-
import { createClient } from '@spree/sdk'
|
|
4566
|
-
|
|
4567
|
-
const client = createClient({
|
|
4568
|
-
baseUrl: 'https://your-store.com',
|
|
4569
|
-
publishableKey: '<api-key>',
|
|
4570
|
-
})
|
|
4571
|
-
|
|
4572
|
-
const fulfillments = await client.carts.fulfillments.list('cart_abc123', {
|
|
4573
|
-
bearerToken: '<token>',
|
|
4574
|
-
})
|
|
4575
|
-
parameters:
|
|
4576
|
-
- name: x-spree-api-key
|
|
4577
|
-
in: header
|
|
4578
|
-
required: true
|
|
4579
|
-
schema:
|
|
4580
|
-
type: string
|
|
4581
|
-
- name: Authorization
|
|
4582
|
-
in: header
|
|
4583
|
-
required: false
|
|
4584
|
-
schema:
|
|
4585
|
-
type: string
|
|
4586
|
-
- name: cart_id
|
|
4587
|
-
in: path
|
|
4588
|
-
required: true
|
|
4589
|
-
description: Cart prefixed ID (e.g., cart_abc123)
|
|
4590
|
-
schema:
|
|
4591
|
-
type: string
|
|
4592
|
-
- name: x-spree-token
|
|
4593
|
-
in: header
|
|
4594
|
-
required: false
|
|
4595
|
-
description: Order token for guest access
|
|
4596
|
-
schema:
|
|
4597
|
-
type: string
|
|
4598
|
-
responses:
|
|
4599
|
-
'200':
|
|
4600
|
-
description: fulfillments found
|
|
4601
|
-
content:
|
|
4602
|
-
application/json:
|
|
4603
|
-
example:
|
|
4604
|
-
data:
|
|
4605
|
-
- id: ful_UkLWZg9DAJ
|
|
4606
|
-
number: H96130861283
|
|
4607
|
-
tracking: U10000
|
|
4608
|
-
tracking_url:
|
|
4609
|
-
cost: '100.0'
|
|
4610
|
-
display_cost: "$100.00"
|
|
4611
|
-
created_at: '2026-03-19T17:03:08.413Z'
|
|
4612
|
-
updated_at: '2026-03-19T17:03:08.430Z'
|
|
4613
|
-
status: pending
|
|
4614
|
-
fulfillment_type: shipping
|
|
4615
|
-
fulfilled_at:
|
|
4616
|
-
items:
|
|
4617
|
-
- item_id: li_UkLWZg9DAJ
|
|
4618
|
-
variant_id: variant_UkLWZg9DAJ
|
|
4619
|
-
quantity: 1
|
|
4620
|
-
delivery_method:
|
|
4621
|
-
id: dm_UkLWZg9DAJ
|
|
4622
|
-
name: UPS Ground
|
|
4623
|
-
code: UPS_GROUND
|
|
4624
|
-
stock_location:
|
|
4625
|
-
id: sloc_UkLWZg9DAJ
|
|
4626
|
-
state_abbr: STATE_ABBR_145
|
|
4627
|
-
name: Eliseo Schimmel
|
|
4628
|
-
address1: 1600 Pennsylvania Ave NW
|
|
4629
|
-
city: Washington
|
|
4630
|
-
zipcode: '20500'
|
|
4631
|
-
country_iso: US
|
|
4632
|
-
country_name: United States of America
|
|
4633
|
-
state_text: STATE_ABBR_145
|
|
4634
|
-
delivery_rates:
|
|
4635
|
-
- id: dr_UkLWZg9DAJ
|
|
4636
|
-
delivery_method_id: dm_UkLWZg9DAJ
|
|
4637
|
-
name: UPS Ground
|
|
4638
|
-
selected: true
|
|
4639
|
-
cost: '100.0'
|
|
4640
|
-
display_cost: "$100.00"
|
|
4641
|
-
delivery_method:
|
|
4642
|
-
id: dm_UkLWZg9DAJ
|
|
4643
|
-
name: UPS Ground
|
|
4644
|
-
code: UPS_GROUND
|
|
4645
|
-
meta:
|
|
4646
|
-
count: 1
|
|
4647
4599
|
"/api/v3/store/carts/{cart_id}/fulfillments/{id}":
|
|
4648
4600
|
patch:
|
|
4649
4601
|
summary: Select delivery rate for fulfillment
|
|
@@ -4706,9 +4658,9 @@ paths:
|
|
|
4706
4658
|
application/json:
|
|
4707
4659
|
example:
|
|
4708
4660
|
id: cart_UkLWZg9DAJ
|
|
4709
|
-
number:
|
|
4710
|
-
token:
|
|
4711
|
-
email:
|
|
4661
|
+
number: R014438685
|
|
4662
|
+
token: xkXdxfEeNpKBjt4YhcBRpyMHohPX52SRfuC
|
|
4663
|
+
email: cleopatra@mosciski.info
|
|
4712
4664
|
customer_note:
|
|
4713
4665
|
currency: USD
|
|
4714
4666
|
locale: en
|
|
@@ -4729,8 +4681,8 @@ paths:
|
|
|
4729
4681
|
display_total: "$110.00"
|
|
4730
4682
|
delivery_total: '100.0'
|
|
4731
4683
|
display_delivery_total: "$100.00"
|
|
4732
|
-
created_at: '2026-03-
|
|
4733
|
-
updated_at: '2026-03-
|
|
4684
|
+
created_at: '2026-03-22T19:16:27.505Z'
|
|
4685
|
+
updated_at: '2026-03-22T19:16:27.594Z'
|
|
4734
4686
|
current_step: payment
|
|
4735
4687
|
completed_steps:
|
|
4736
4688
|
- address
|
|
@@ -4746,8 +4698,8 @@ paths:
|
|
|
4746
4698
|
variant_id: variant_UkLWZg9DAJ
|
|
4747
4699
|
quantity: 1
|
|
4748
4700
|
currency: USD
|
|
4749
|
-
name: Product
|
|
4750
|
-
slug: product-
|
|
4701
|
+
name: Product 372368
|
|
4702
|
+
slug: product-372368
|
|
4751
4703
|
options_text: ''
|
|
4752
4704
|
price: '10.0'
|
|
4753
4705
|
display_price: "$10.00"
|
|
@@ -4766,21 +4718,21 @@ paths:
|
|
|
4766
4718
|
discounted_amount: '10.0'
|
|
4767
4719
|
display_discounted_amount: "$10.00"
|
|
4768
4720
|
display_compare_at_amount: "$0.00"
|
|
4769
|
-
created_at: '2026-03-
|
|
4770
|
-
updated_at: '2026-03-
|
|
4721
|
+
created_at: '2026-03-22T19:16:27.534Z'
|
|
4722
|
+
updated_at: '2026-03-22T19:16:27.534Z'
|
|
4771
4723
|
compare_at_amount:
|
|
4772
4724
|
thumbnail_url:
|
|
4773
4725
|
option_values: []
|
|
4774
4726
|
digital_links: []
|
|
4775
4727
|
fulfillments:
|
|
4776
4728
|
- id: ful_UkLWZg9DAJ
|
|
4777
|
-
number:
|
|
4729
|
+
number: H58856334147
|
|
4778
4730
|
tracking: U10000
|
|
4779
4731
|
tracking_url:
|
|
4780
4732
|
cost: '100.0'
|
|
4781
4733
|
display_cost: "$100.00"
|
|
4782
|
-
created_at: '2026-03-
|
|
4783
|
-
updated_at: '2026-03-
|
|
4734
|
+
created_at: '2026-03-22T19:16:27.540Z'
|
|
4735
|
+
updated_at: '2026-03-22T19:16:27.578Z'
|
|
4784
4736
|
status: pending
|
|
4785
4737
|
fulfillment_type: shipping
|
|
4786
4738
|
fulfilled_at:
|
|
@@ -4794,14 +4746,14 @@ paths:
|
|
|
4794
4746
|
code: UPS_GROUND
|
|
4795
4747
|
stock_location:
|
|
4796
4748
|
id: sloc_UkLWZg9DAJ
|
|
4797
|
-
state_abbr:
|
|
4798
|
-
name:
|
|
4749
|
+
state_abbr: STATE_ABBR_140
|
|
4750
|
+
name: Latonya Bahringer
|
|
4799
4751
|
address1: 1600 Pennsylvania Ave NW
|
|
4800
4752
|
city: Washington
|
|
4801
4753
|
zipcode: '20500'
|
|
4802
4754
|
country_iso: US
|
|
4803
4755
|
country_name: United States of America
|
|
4804
|
-
state_text:
|
|
4756
|
+
state_text: STATE_ABBR_140
|
|
4805
4757
|
delivery_rates:
|
|
4806
4758
|
- id: dr_UkLWZg9DAJ
|
|
4807
4759
|
delivery_method_id: dm_UkLWZg9DAJ
|
|
@@ -4819,7 +4771,7 @@ paths:
|
|
|
4819
4771
|
first_name: John
|
|
4820
4772
|
last_name: Doe
|
|
4821
4773
|
full_name: John Doe
|
|
4822
|
-
address1:
|
|
4774
|
+
address1: 132 Lovely Street
|
|
4823
4775
|
address2: Northwest
|
|
4824
4776
|
postal_code: '35005'
|
|
4825
4777
|
city: Herndon
|
|
@@ -4827,16 +4779,18 @@ paths:
|
|
|
4827
4779
|
company: Company
|
|
4828
4780
|
country_name: United States of America
|
|
4829
4781
|
country_iso: US
|
|
4830
|
-
state_text:
|
|
4831
|
-
state_abbr:
|
|
4782
|
+
state_text: STATE_ABBR_142
|
|
4783
|
+
state_abbr: STATE_ABBR_142
|
|
4832
4784
|
quick_checkout: false
|
|
4833
|
-
|
|
4785
|
+
is_default_billing: false
|
|
4786
|
+
is_default_shipping: false
|
|
4787
|
+
state_name: STATE_NAME_142
|
|
4834
4788
|
shipping_address:
|
|
4835
4789
|
id: addr_VqXmZF31wY
|
|
4836
4790
|
first_name: John
|
|
4837
4791
|
last_name: Doe
|
|
4838
4792
|
full_name: John Doe
|
|
4839
|
-
address1:
|
|
4793
|
+
address1: 133 Lovely Street
|
|
4840
4794
|
address2: Northwest
|
|
4841
4795
|
postal_code: '35005'
|
|
4842
4796
|
city: Herndon
|
|
@@ -4844,10 +4798,12 @@ paths:
|
|
|
4844
4798
|
company: Company
|
|
4845
4799
|
country_name: United States of America
|
|
4846
4800
|
country_iso: US
|
|
4847
|
-
state_text:
|
|
4848
|
-
state_abbr:
|
|
4801
|
+
state_text: STATE_ABBR_143
|
|
4802
|
+
state_abbr: STATE_ABBR_143
|
|
4849
4803
|
quick_checkout: false
|
|
4850
|
-
|
|
4804
|
+
is_default_billing: false
|
|
4805
|
+
is_default_shipping: false
|
|
4806
|
+
state_name: STATE_NAME_143
|
|
4851
4807
|
payment_methods: []
|
|
4852
4808
|
schema:
|
|
4853
4809
|
"$ref": "#/components/schemas/Cart"
|
|
@@ -4873,7 +4829,7 @@ paths:
|
|
|
4873
4829
|
description: Delivery rate ID to select
|
|
4874
4830
|
required:
|
|
4875
4831
|
- selected_delivery_rate_id
|
|
4876
|
-
"/api/v3/store/
|
|
4832
|
+
"/api/v3/store/customers/me/gift_cards":
|
|
4877
4833
|
get:
|
|
4878
4834
|
summary: List gift cards
|
|
4879
4835
|
tags:
|
|
@@ -4932,7 +4888,7 @@ paths:
|
|
|
4932
4888
|
example:
|
|
4933
4889
|
data:
|
|
4934
4890
|
- id: gc_UkLWZg9DAJ
|
|
4935
|
-
code:
|
|
4891
|
+
code: 5CB68B2034F86336
|
|
4936
4892
|
status: active
|
|
4937
4893
|
currency: USD
|
|
4938
4894
|
amount: '10.0'
|
|
@@ -4946,8 +4902,8 @@ paths:
|
|
|
4946
4902
|
redeemed_at:
|
|
4947
4903
|
expired: false
|
|
4948
4904
|
active: true
|
|
4949
|
-
created_at: '2026-03-
|
|
4950
|
-
updated_at: '2026-03-
|
|
4905
|
+
created_at: '2026-03-22T19:16:28.755Z'
|
|
4906
|
+
updated_at: '2026-03-22T19:16:28.755Z'
|
|
4951
4907
|
meta:
|
|
4952
4908
|
page: 1
|
|
4953
4909
|
limit: 25
|
|
@@ -4977,7 +4933,7 @@ paths:
|
|
|
4977
4933
|
message: Authentication required
|
|
4978
4934
|
schema:
|
|
4979
4935
|
"$ref": "#/components/schemas/ErrorResponse"
|
|
4980
|
-
"/api/v3/store/
|
|
4936
|
+
"/api/v3/store/customers/me/gift_cards/{id}":
|
|
4981
4937
|
get:
|
|
4982
4938
|
summary: Get a gift card
|
|
4983
4939
|
tags:
|
|
@@ -5030,7 +4986,7 @@ paths:
|
|
|
5030
4986
|
application/json:
|
|
5031
4987
|
example:
|
|
5032
4988
|
id: gc_UkLWZg9DAJ
|
|
5033
|
-
code:
|
|
4989
|
+
code: AA7D29155A37CC34
|
|
5034
4990
|
status: active
|
|
5035
4991
|
currency: USD
|
|
5036
4992
|
amount: '10.0'
|
|
@@ -5044,8 +5000,8 @@ paths:
|
|
|
5044
5000
|
redeemed_at:
|
|
5045
5001
|
expired: false
|
|
5046
5002
|
active: true
|
|
5047
|
-
created_at: '2026-03-
|
|
5048
|
-
updated_at: '2026-03-
|
|
5003
|
+
created_at: '2026-03-22T19:16:29.886Z'
|
|
5004
|
+
updated_at: '2026-03-22T19:16:29.886Z'
|
|
5049
5005
|
schema:
|
|
5050
5006
|
"$ref": "#/components/schemas/GiftCard"
|
|
5051
5007
|
'404':
|
|
@@ -5122,9 +5078,9 @@ paths:
|
|
|
5122
5078
|
application/json:
|
|
5123
5079
|
example:
|
|
5124
5080
|
id: cart_UkLWZg9DAJ
|
|
5125
|
-
number:
|
|
5126
|
-
token:
|
|
5127
|
-
email:
|
|
5081
|
+
number: R629283600
|
|
5082
|
+
token: PiUTF47fNxPuJezCUy7SGWLMR91RoM5wA17
|
|
5083
|
+
email: craig@donnellybotsford.ca
|
|
5128
5084
|
customer_note:
|
|
5129
5085
|
currency: USD
|
|
5130
5086
|
locale: en
|
|
@@ -5145,8 +5101,8 @@ paths:
|
|
|
5145
5101
|
display_total: "$29.99"
|
|
5146
5102
|
delivery_total: '0.0'
|
|
5147
5103
|
display_delivery_total: "$0.00"
|
|
5148
|
-
created_at: '2026-03-
|
|
5149
|
-
updated_at: '2026-03-
|
|
5104
|
+
created_at: '2026-03-22T19:16:31.626Z'
|
|
5105
|
+
updated_at: '2026-03-22T19:16:31.821Z'
|
|
5150
5106
|
current_step: address
|
|
5151
5107
|
completed_steps: []
|
|
5152
5108
|
requirements:
|
|
@@ -5166,8 +5122,8 @@ paths:
|
|
|
5166
5122
|
variant_id: variant_UkLWZg9DAJ
|
|
5167
5123
|
quantity: 1
|
|
5168
5124
|
currency: USD
|
|
5169
|
-
name: Product
|
|
5170
|
-
slug: product-
|
|
5125
|
+
name: Product 419663
|
|
5126
|
+
slug: product-419663
|
|
5171
5127
|
options_text: ''
|
|
5172
5128
|
price: '10.0'
|
|
5173
5129
|
display_price: "$10.00"
|
|
@@ -5186,8 +5142,8 @@ paths:
|
|
|
5186
5142
|
discounted_amount: '10.0'
|
|
5187
5143
|
display_discounted_amount: "$10.00"
|
|
5188
5144
|
display_compare_at_amount: "$0.00"
|
|
5189
|
-
created_at: '2026-03-
|
|
5190
|
-
updated_at: '2026-03-
|
|
5145
|
+
created_at: '2026-03-22T19:16:31.692Z'
|
|
5146
|
+
updated_at: '2026-03-22T19:16:31.692Z'
|
|
5191
5147
|
compare_at_amount:
|
|
5192
5148
|
thumbnail_url:
|
|
5193
5149
|
option_values: []
|
|
@@ -5196,8 +5152,8 @@ paths:
|
|
|
5196
5152
|
variant_id: variant_gbHJdmfrXB
|
|
5197
5153
|
quantity: 1
|
|
5198
5154
|
currency: USD
|
|
5199
|
-
name: Product
|
|
5200
|
-
slug: product-
|
|
5155
|
+
name: Product 429975
|
|
5156
|
+
slug: product-429975
|
|
5201
5157
|
options_text: ''
|
|
5202
5158
|
price: '19.99'
|
|
5203
5159
|
display_price: "$19.99"
|
|
@@ -5216,8 +5172,8 @@ paths:
|
|
|
5216
5172
|
discounted_amount: '19.99'
|
|
5217
5173
|
display_discounted_amount: "$19.99"
|
|
5218
5174
|
display_compare_at_amount: "$0.00"
|
|
5219
|
-
created_at: '2026-03-
|
|
5220
|
-
updated_at: '2026-03-
|
|
5175
|
+
created_at: '2026-03-22T19:16:31.776Z'
|
|
5176
|
+
updated_at: '2026-03-22T19:16:31.776Z'
|
|
5221
5177
|
compare_at_amount:
|
|
5222
5178
|
thumbnail_url:
|
|
5223
5179
|
option_values: []
|
|
@@ -5229,7 +5185,7 @@ paths:
|
|
|
5229
5185
|
first_name: John
|
|
5230
5186
|
last_name: Doe
|
|
5231
5187
|
full_name: John Doe
|
|
5232
|
-
address1:
|
|
5188
|
+
address1: 151 Lovely Street
|
|
5233
5189
|
address2: Northwest
|
|
5234
5190
|
postal_code: '35005'
|
|
5235
5191
|
city: Herndon
|
|
@@ -5237,10 +5193,12 @@ paths:
|
|
|
5237
5193
|
company: Company
|
|
5238
5194
|
country_name: United States of America
|
|
5239
5195
|
country_iso: US
|
|
5240
|
-
state_text:
|
|
5241
|
-
state_abbr:
|
|
5196
|
+
state_text: STATE_ABBR_161
|
|
5197
|
+
state_abbr: STATE_ABBR_161
|
|
5242
5198
|
quick_checkout: false
|
|
5243
|
-
|
|
5199
|
+
is_default_billing: false
|
|
5200
|
+
is_default_shipping: false
|
|
5201
|
+
state_name: STATE_NAME_161
|
|
5244
5202
|
shipping_address:
|
|
5245
5203
|
payment_methods: []
|
|
5246
5204
|
schema:
|
|
@@ -5337,9 +5295,9 @@ paths:
|
|
|
5337
5295
|
application/json:
|
|
5338
5296
|
example:
|
|
5339
5297
|
id: cart_UkLWZg9DAJ
|
|
5340
|
-
number:
|
|
5341
|
-
token:
|
|
5342
|
-
email:
|
|
5298
|
+
number: R653202365
|
|
5299
|
+
token: 2eu7fAaBSEAXtBgHYeNS9kzweJ5oMoms18W
|
|
5300
|
+
email: lorilee_pacocha@quitzon.com
|
|
5343
5301
|
customer_note:
|
|
5344
5302
|
currency: USD
|
|
5345
5303
|
locale: en
|
|
@@ -5360,8 +5318,8 @@ paths:
|
|
|
5360
5318
|
display_total: "$0.00"
|
|
5361
5319
|
delivery_total: '0.0'
|
|
5362
5320
|
display_delivery_total: "$0.00"
|
|
5363
|
-
created_at: '2026-03-
|
|
5364
|
-
updated_at: '2026-03-
|
|
5321
|
+
created_at: '2026-03-22T19:16:33.588Z'
|
|
5322
|
+
updated_at: '2026-03-22T19:16:33.616Z'
|
|
5365
5323
|
current_step: address
|
|
5366
5324
|
completed_steps: []
|
|
5367
5325
|
requirements:
|
|
@@ -5378,8 +5336,8 @@ paths:
|
|
|
5378
5336
|
variant_id: variant_UkLWZg9DAJ
|
|
5379
5337
|
quantity: 1
|
|
5380
5338
|
currency: USD
|
|
5381
|
-
name: Product
|
|
5382
|
-
slug: product-
|
|
5339
|
+
name: Product 457834
|
|
5340
|
+
slug: product-457834
|
|
5383
5341
|
options_text: ''
|
|
5384
5342
|
price: '10.0'
|
|
5385
5343
|
display_price: "$10.00"
|
|
@@ -5398,8 +5356,8 @@ paths:
|
|
|
5398
5356
|
discounted_amount: '10.0'
|
|
5399
5357
|
display_discounted_amount: "$10.00"
|
|
5400
5358
|
display_compare_at_amount: "$0.00"
|
|
5401
|
-
created_at: '2026-03-
|
|
5402
|
-
updated_at: '2026-03-
|
|
5359
|
+
created_at: '2026-03-22T19:16:33.615Z'
|
|
5360
|
+
updated_at: '2026-03-22T19:16:33.632Z'
|
|
5403
5361
|
compare_at_amount:
|
|
5404
5362
|
thumbnail_url:
|
|
5405
5363
|
option_values: []
|
|
@@ -5411,7 +5369,7 @@ paths:
|
|
|
5411
5369
|
first_name: John
|
|
5412
5370
|
last_name: Doe
|
|
5413
5371
|
full_name: John Doe
|
|
5414
|
-
address1:
|
|
5372
|
+
address1: 160 Lovely Street
|
|
5415
5373
|
address2: Northwest
|
|
5416
5374
|
postal_code: '35005'
|
|
5417
5375
|
city: Herndon
|
|
@@ -5419,10 +5377,12 @@ paths:
|
|
|
5419
5377
|
company: Company
|
|
5420
5378
|
country_name: United States of America
|
|
5421
5379
|
country_iso: US
|
|
5422
|
-
state_text:
|
|
5423
|
-
state_abbr:
|
|
5380
|
+
state_text: STATE_ABBR_170
|
|
5381
|
+
state_abbr: STATE_ABBR_170
|
|
5424
5382
|
quick_checkout: false
|
|
5425
|
-
|
|
5383
|
+
is_default_billing: false
|
|
5384
|
+
is_default_shipping: false
|
|
5385
|
+
state_name: STATE_NAME_170
|
|
5426
5386
|
shipping_address:
|
|
5427
5387
|
payment_methods: []
|
|
5428
5388
|
schema:
|
|
@@ -5499,9 +5459,9 @@ paths:
|
|
|
5499
5459
|
application/json:
|
|
5500
5460
|
example:
|
|
5501
5461
|
id: cart_UkLWZg9DAJ
|
|
5502
|
-
number:
|
|
5503
|
-
token:
|
|
5504
|
-
email:
|
|
5462
|
+
number: R541744690
|
|
5463
|
+
token: vf62LRhU3ECJ4VWawcoxpQKFR2kBKGFt2XN
|
|
5464
|
+
email: lemuel.frami@berniergoldner.biz
|
|
5505
5465
|
customer_note:
|
|
5506
5466
|
currency: USD
|
|
5507
5467
|
locale: en
|
|
@@ -5522,8 +5482,8 @@ paths:
|
|
|
5522
5482
|
display_total: "$0.00"
|
|
5523
5483
|
delivery_total: '0.0'
|
|
5524
5484
|
display_delivery_total: "$0.00"
|
|
5525
|
-
created_at: '2026-03-
|
|
5526
|
-
updated_at: '2026-03-
|
|
5485
|
+
created_at: '2026-03-22T19:16:34.175Z'
|
|
5486
|
+
updated_at: '2026-03-22T19:16:34.228Z'
|
|
5527
5487
|
current_step: address
|
|
5528
5488
|
completed_steps: []
|
|
5529
5489
|
requirements:
|
|
@@ -5546,7 +5506,7 @@ paths:
|
|
|
5546
5506
|
first_name: John
|
|
5547
5507
|
last_name: Doe
|
|
5548
5508
|
full_name: John Doe
|
|
5549
|
-
address1:
|
|
5509
|
+
address1: 163 Lovely Street
|
|
5550
5510
|
address2: Northwest
|
|
5551
5511
|
postal_code: '35005'
|
|
5552
5512
|
city: Herndon
|
|
@@ -5554,10 +5514,12 @@ paths:
|
|
|
5554
5514
|
company: Company
|
|
5555
5515
|
country_name: United States of America
|
|
5556
5516
|
country_iso: US
|
|
5557
|
-
state_text:
|
|
5558
|
-
state_abbr:
|
|
5517
|
+
state_text: STATE_ABBR_173
|
|
5518
|
+
state_abbr: STATE_ABBR_173
|
|
5559
5519
|
quick_checkout: false
|
|
5560
|
-
|
|
5520
|
+
is_default_billing: false
|
|
5521
|
+
is_default_shipping: false
|
|
5522
|
+
state_name: STATE_NAME_173
|
|
5561
5523
|
shipping_address:
|
|
5562
5524
|
payment_methods: []
|
|
5563
5525
|
schema:
|
|
@@ -5576,7 +5538,7 @@ paths:
|
|
|
5576
5538
|
get:
|
|
5577
5539
|
summary: List supported locales
|
|
5578
5540
|
tags:
|
|
5579
|
-
-
|
|
5541
|
+
- Markets
|
|
5580
5542
|
security:
|
|
5581
5543
|
- api_key: []
|
|
5582
5544
|
description: Returns locales supported by the store (derived from markets)
|
|
@@ -5703,12 +5665,12 @@ paths:
|
|
|
5703
5665
|
- fr
|
|
5704
5666
|
countries:
|
|
5705
5667
|
- iso: DE
|
|
5706
|
-
iso3:
|
|
5668
|
+
iso3: IS41
|
|
5707
5669
|
name: Germany
|
|
5708
5670
|
states_required: false
|
|
5709
5671
|
zipcode_required: true
|
|
5710
5672
|
- iso: FR
|
|
5711
|
-
iso3:
|
|
5673
|
+
iso3: IS42
|
|
5712
5674
|
name: France
|
|
5713
5675
|
states_required: false
|
|
5714
5676
|
zipcode_required: true
|
|
@@ -5787,12 +5749,12 @@ paths:
|
|
|
5787
5749
|
- fr
|
|
5788
5750
|
countries:
|
|
5789
5751
|
- iso: DE
|
|
5790
|
-
iso3:
|
|
5752
|
+
iso3: IS45
|
|
5791
5753
|
name: Germany
|
|
5792
5754
|
states_required: false
|
|
5793
5755
|
zipcode_required: true
|
|
5794
5756
|
- iso: FR
|
|
5795
|
-
iso3:
|
|
5757
|
+
iso3: IS46
|
|
5796
5758
|
name: France
|
|
5797
5759
|
states_required: false
|
|
5798
5760
|
zipcode_required: true
|
|
@@ -5867,12 +5829,12 @@ paths:
|
|
|
5867
5829
|
- fr
|
|
5868
5830
|
countries:
|
|
5869
5831
|
- iso: DE
|
|
5870
|
-
iso3:
|
|
5832
|
+
iso3: IS49
|
|
5871
5833
|
name: Germany
|
|
5872
5834
|
states_required: false
|
|
5873
5835
|
zipcode_required: true
|
|
5874
5836
|
- iso: FR
|
|
5875
|
-
iso3:
|
|
5837
|
+
iso3: IS50
|
|
5876
5838
|
name: France
|
|
5877
5839
|
states_required: false
|
|
5878
5840
|
zipcode_required: true
|
|
@@ -5936,12 +5898,12 @@ paths:
|
|
|
5936
5898
|
example:
|
|
5937
5899
|
data:
|
|
5938
5900
|
- iso: FR
|
|
5939
|
-
iso3:
|
|
5901
|
+
iso3: IS54
|
|
5940
5902
|
name: France
|
|
5941
5903
|
states_required: false
|
|
5942
5904
|
zipcode_required: true
|
|
5943
5905
|
- iso: DE
|
|
5944
|
-
iso3:
|
|
5906
|
+
iso3: IS53
|
|
5945
5907
|
name: Germany
|
|
5946
5908
|
states_required: false
|
|
5947
5909
|
zipcode_required: true
|
|
@@ -6076,7 +6038,7 @@ paths:
|
|
|
6076
6038
|
application/json:
|
|
6077
6039
|
example:
|
|
6078
6040
|
id: or_UkLWZg9DAJ
|
|
6079
|
-
number:
|
|
6041
|
+
number: R598466821
|
|
6080
6042
|
email: guest@example.com
|
|
6081
6043
|
customer_note:
|
|
6082
6044
|
currency: USD
|
|
@@ -6100,17 +6062,17 @@ paths:
|
|
|
6100
6062
|
display_delivery_total: "$100.00"
|
|
6101
6063
|
fulfillment_status:
|
|
6102
6064
|
payment_status:
|
|
6103
|
-
completed_at: '2026-03-
|
|
6104
|
-
created_at: '2026-03-
|
|
6105
|
-
updated_at: '2026-03-
|
|
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'
|
|
6106
6068
|
discounts: []
|
|
6107
6069
|
items:
|
|
6108
6070
|
- id: li_UkLWZg9DAJ
|
|
6109
6071
|
variant_id: variant_UkLWZg9DAJ
|
|
6110
6072
|
quantity: 1
|
|
6111
6073
|
currency: USD
|
|
6112
|
-
name: Product
|
|
6113
|
-
slug: product-
|
|
6074
|
+
name: Product 494489
|
|
6075
|
+
slug: product-494489
|
|
6114
6076
|
options_text: ''
|
|
6115
6077
|
price: '10.0'
|
|
6116
6078
|
display_price: "$10.00"
|
|
@@ -6129,21 +6091,21 @@ paths:
|
|
|
6129
6091
|
discounted_amount: '10.0'
|
|
6130
6092
|
display_discounted_amount: "$10.00"
|
|
6131
6093
|
display_compare_at_amount: "$0.00"
|
|
6132
|
-
created_at: '2026-03-
|
|
6133
|
-
updated_at: '2026-03-
|
|
6094
|
+
created_at: '2026-03-22T19:16:35.905Z'
|
|
6095
|
+
updated_at: '2026-03-22T19:16:35.905Z'
|
|
6134
6096
|
compare_at_amount:
|
|
6135
6097
|
thumbnail_url:
|
|
6136
6098
|
option_values: []
|
|
6137
6099
|
digital_links: []
|
|
6138
6100
|
fulfillments:
|
|
6139
6101
|
- id: ful_UkLWZg9DAJ
|
|
6140
|
-
number:
|
|
6102
|
+
number: H99315604293
|
|
6141
6103
|
tracking: U10000
|
|
6142
6104
|
tracking_url:
|
|
6143
6105
|
cost: '100.0'
|
|
6144
6106
|
display_cost: "$100.00"
|
|
6145
|
-
created_at: '2026-03-
|
|
6146
|
-
updated_at: '2026-03-
|
|
6107
|
+
created_at: '2026-03-22T19:16:35.909Z'
|
|
6108
|
+
updated_at: '2026-03-22T19:16:35.922Z'
|
|
6147
6109
|
status: pending
|
|
6148
6110
|
fulfillment_type: shipping
|
|
6149
6111
|
fulfilled_at:
|
|
@@ -6157,14 +6119,14 @@ paths:
|
|
|
6157
6119
|
code: UPS_GROUND
|
|
6158
6120
|
stock_location:
|
|
6159
6121
|
id: sloc_UkLWZg9DAJ
|
|
6160
|
-
state_abbr:
|
|
6161
|
-
name:
|
|
6122
|
+
state_abbr: STATE_ABBR_181
|
|
6123
|
+
name: Reina Jacobs
|
|
6162
6124
|
address1: 1600 Pennsylvania Ave NW
|
|
6163
6125
|
city: Washington
|
|
6164
6126
|
zipcode: '20500'
|
|
6165
6127
|
country_iso: US
|
|
6166
6128
|
country_name: United States of America
|
|
6167
|
-
state_text:
|
|
6129
|
+
state_text: STATE_ABBR_181
|
|
6168
6130
|
delivery_rates:
|
|
6169
6131
|
- id: dr_gbHJdmfrXB
|
|
6170
6132
|
delivery_method_id: dm_UkLWZg9DAJ
|
|
@@ -6182,7 +6144,7 @@ paths:
|
|
|
6182
6144
|
first_name: John
|
|
6183
6145
|
last_name: Doe
|
|
6184
6146
|
full_name: John Doe
|
|
6185
|
-
address1:
|
|
6147
|
+
address1: 171 Lovely Street
|
|
6186
6148
|
address2: Northwest
|
|
6187
6149
|
postal_code: '35005'
|
|
6188
6150
|
city: Herndon
|
|
@@ -6190,16 +6152,18 @@ paths:
|
|
|
6190
6152
|
company: Company
|
|
6191
6153
|
country_name: United States of America
|
|
6192
6154
|
country_iso: US
|
|
6193
|
-
state_text:
|
|
6194
|
-
state_abbr:
|
|
6155
|
+
state_text: STATE_ABBR_181
|
|
6156
|
+
state_abbr: STATE_ABBR_181
|
|
6195
6157
|
quick_checkout: false
|
|
6196
|
-
|
|
6158
|
+
is_default_billing: false
|
|
6159
|
+
is_default_shipping: false
|
|
6160
|
+
state_name: STATE_NAME_181
|
|
6197
6161
|
shipping_address:
|
|
6198
6162
|
id: addr_gbHJdmfrXB
|
|
6199
6163
|
first_name: John
|
|
6200
6164
|
last_name: Doe
|
|
6201
6165
|
full_name: John Doe
|
|
6202
|
-
address1:
|
|
6166
|
+
address1: 172 Lovely Street
|
|
6203
6167
|
address2: Northwest
|
|
6204
6168
|
postal_code: '35005'
|
|
6205
6169
|
city: Herndon
|
|
@@ -6207,10 +6171,12 @@ paths:
|
|
|
6207
6171
|
company: Company
|
|
6208
6172
|
country_name: United States of America
|
|
6209
6173
|
country_iso: US
|
|
6210
|
-
state_text:
|
|
6211
|
-
state_abbr:
|
|
6174
|
+
state_text: STATE_ABBR_182
|
|
6175
|
+
state_abbr: STATE_ABBR_182
|
|
6212
6176
|
quick_checkout: false
|
|
6213
|
-
|
|
6177
|
+
is_default_billing: false
|
|
6178
|
+
is_default_shipping: false
|
|
6179
|
+
state_name: STATE_NAME_182
|
|
6214
6180
|
schema:
|
|
6215
6181
|
"$ref": "#/components/schemas/Order"
|
|
6216
6182
|
'404':
|
|
@@ -6223,80 +6189,6 @@ paths:
|
|
|
6223
6189
|
message: Order not found
|
|
6224
6190
|
schema:
|
|
6225
6191
|
"$ref": "#/components/schemas/ErrorResponse"
|
|
6226
|
-
"/api/v3/store/carts/{cart_id}/payment_methods":
|
|
6227
|
-
get:
|
|
6228
|
-
summary: List available payment methods
|
|
6229
|
-
tags:
|
|
6230
|
-
- Carts
|
|
6231
|
-
security:
|
|
6232
|
-
- api_key: []
|
|
6233
|
-
bearer_auth: []
|
|
6234
|
-
description: Returns payment methods available for the current cart based on
|
|
6235
|
-
store configuration and order state.
|
|
6236
|
-
x-codeSamples:
|
|
6237
|
-
- lang: javascript
|
|
6238
|
-
label: Spree SDK
|
|
6239
|
-
source: |-
|
|
6240
|
-
import { createClient } from '@spree/sdk'
|
|
6241
|
-
|
|
6242
|
-
const client = createClient({
|
|
6243
|
-
baseUrl: 'https://your-store.com',
|
|
6244
|
-
publishableKey: '<api-key>',
|
|
6245
|
-
})
|
|
6246
|
-
|
|
6247
|
-
const methods = await client.carts.paymentMethods.list('cart_abc123', {
|
|
6248
|
-
bearerToken: '<token>',
|
|
6249
|
-
})
|
|
6250
|
-
parameters:
|
|
6251
|
-
- name: x-spree-api-key
|
|
6252
|
-
in: header
|
|
6253
|
-
required: true
|
|
6254
|
-
schema:
|
|
6255
|
-
type: string
|
|
6256
|
-
- name: Authorization
|
|
6257
|
-
in: header
|
|
6258
|
-
required: false
|
|
6259
|
-
description: Bearer token for authenticated customers
|
|
6260
|
-
schema:
|
|
6261
|
-
type: string
|
|
6262
|
-
- name: cart_id
|
|
6263
|
-
in: path
|
|
6264
|
-
required: true
|
|
6265
|
-
description: Cart prefixed ID (e.g., cart_abc123)
|
|
6266
|
-
schema:
|
|
6267
|
-
type: string
|
|
6268
|
-
- name: x-spree-token
|
|
6269
|
-
in: header
|
|
6270
|
-
required: false
|
|
6271
|
-
description: Order token for guest access
|
|
6272
|
-
schema:
|
|
6273
|
-
type: string
|
|
6274
|
-
responses:
|
|
6275
|
-
'200':
|
|
6276
|
-
description: payment methods found
|
|
6277
|
-
content:
|
|
6278
|
-
application/json:
|
|
6279
|
-
example:
|
|
6280
|
-
data:
|
|
6281
|
-
- id: pm_UkLWZg9DAJ
|
|
6282
|
-
name: Credit Card
|
|
6283
|
-
description:
|
|
6284
|
-
type: Spree::Gateway::Bogus
|
|
6285
|
-
session_required: true
|
|
6286
|
-
meta:
|
|
6287
|
-
count: 1
|
|
6288
|
-
schema:
|
|
6289
|
-
type: object
|
|
6290
|
-
properties:
|
|
6291
|
-
data:
|
|
6292
|
-
type: array
|
|
6293
|
-
items:
|
|
6294
|
-
"$ref": "#/components/schemas/PaymentMethod"
|
|
6295
|
-
meta:
|
|
6296
|
-
type: object
|
|
6297
|
-
properties:
|
|
6298
|
-
count:
|
|
6299
|
-
type: integer
|
|
6300
6192
|
"/api/v3/store/carts/{cart_id}/payment_sessions":
|
|
6301
6193
|
post:
|
|
6302
6194
|
summary: Create payment session
|
|
@@ -6363,13 +6255,13 @@ paths:
|
|
|
6363
6255
|
id: ps_gbHJdmfrXB
|
|
6364
6256
|
status: pending
|
|
6365
6257
|
currency: USD
|
|
6366
|
-
external_id:
|
|
6258
|
+
external_id: bogus_4c052a493944fd5d7b8fb20c
|
|
6367
6259
|
external_data:
|
|
6368
|
-
client_secret:
|
|
6260
|
+
client_secret: bogus_secret_2386b86305f75b1c
|
|
6369
6261
|
customer_external_id:
|
|
6370
6262
|
expires_at:
|
|
6371
|
-
created_at: '2026-03-
|
|
6372
|
-
updated_at: '2026-03-
|
|
6263
|
+
created_at: '2026-03-22T19:16:37.732Z'
|
|
6264
|
+
updated_at: '2026-03-22T19:16:37.732Z'
|
|
6373
6265
|
amount: '110.0'
|
|
6374
6266
|
payment_method_id: pm_UkLWZg9DAJ
|
|
6375
6267
|
order_id: or_UkLWZg9DAJ
|
|
@@ -6464,13 +6356,13 @@ paths:
|
|
|
6464
6356
|
id: ps_UkLWZg9DAJ
|
|
6465
6357
|
status: pending
|
|
6466
6358
|
currency: USD
|
|
6467
|
-
external_id:
|
|
6359
|
+
external_id: bogus_dcc014f7dde72d66204836f7
|
|
6468
6360
|
external_data:
|
|
6469
6361
|
client_secret: secret_123
|
|
6470
6362
|
customer_external_id:
|
|
6471
6363
|
expires_at:
|
|
6472
|
-
created_at: '2026-03-
|
|
6473
|
-
updated_at: '2026-03-
|
|
6364
|
+
created_at: '2026-03-22T19:16:38.355Z'
|
|
6365
|
+
updated_at: '2026-03-22T19:16:38.355Z'
|
|
6474
6366
|
amount: '110.0'
|
|
6475
6367
|
payment_method_id: pm_UkLWZg9DAJ
|
|
6476
6368
|
order_id: or_UkLWZg9DAJ
|
|
@@ -6527,13 +6419,13 @@ paths:
|
|
|
6527
6419
|
id: ps_UkLWZg9DAJ
|
|
6528
6420
|
status: pending
|
|
6529
6421
|
currency: USD
|
|
6530
|
-
external_id:
|
|
6422
|
+
external_id: bogus_76164c444df47970035bc0b2
|
|
6531
6423
|
external_data:
|
|
6532
6424
|
client_secret: secret_123
|
|
6533
6425
|
customer_external_id:
|
|
6534
6426
|
expires_at:
|
|
6535
|
-
created_at: '2026-03-
|
|
6536
|
-
updated_at: '2026-03-
|
|
6427
|
+
created_at: '2026-03-22T19:16:39.798Z'
|
|
6428
|
+
updated_at: '2026-03-22T19:16:39.814Z'
|
|
6537
6429
|
amount: '50.0'
|
|
6538
6430
|
payment_method_id: pm_UkLWZg9DAJ
|
|
6539
6431
|
order_id: or_UkLWZg9DAJ
|
|
@@ -6630,13 +6522,13 @@ paths:
|
|
|
6630
6522
|
id: ps_UkLWZg9DAJ
|
|
6631
6523
|
status: completed
|
|
6632
6524
|
currency: USD
|
|
6633
|
-
external_id:
|
|
6525
|
+
external_id: bogus_090a5c2ddf24c47b023f75d7
|
|
6634
6526
|
external_data:
|
|
6635
6527
|
client_secret: secret_123
|
|
6636
6528
|
customer_external_id:
|
|
6637
6529
|
expires_at:
|
|
6638
|
-
created_at: '2026-03-
|
|
6639
|
-
updated_at: '2026-03-
|
|
6530
|
+
created_at: '2026-03-22T19:16:40.441Z'
|
|
6531
|
+
updated_at: '2026-03-22T19:16:40.458Z'
|
|
6640
6532
|
amount: '110.0'
|
|
6641
6533
|
payment_method_id: pm_UkLWZg9DAJ
|
|
6642
6534
|
order_id: or_UkLWZg9DAJ
|
|
@@ -6670,7 +6562,7 @@ paths:
|
|
|
6670
6562
|
external_data:
|
|
6671
6563
|
type: object
|
|
6672
6564
|
description: Provider-specific completion data
|
|
6673
|
-
"/api/v3/store/
|
|
6565
|
+
"/api/v3/store/customers/me/payment_setup_sessions":
|
|
6674
6566
|
post:
|
|
6675
6567
|
summary: Create payment setup session
|
|
6676
6568
|
tags:
|
|
@@ -6716,11 +6608,11 @@ paths:
|
|
|
6716
6608
|
example:
|
|
6717
6609
|
id: pss_gbHJdmfrXB
|
|
6718
6610
|
status: pending
|
|
6719
|
-
external_id:
|
|
6720
|
-
external_client_secret:
|
|
6611
|
+
external_id: bogus_seti_2372f9a91a4b546400108a31
|
|
6612
|
+
external_client_secret: bogus_seti_secret_2d1a01b5d26a0b94
|
|
6721
6613
|
external_data: {}
|
|
6722
|
-
created_at: '2026-03-
|
|
6723
|
-
updated_at: '2026-03-
|
|
6614
|
+
created_at: '2026-03-22T19:16:42.025Z'
|
|
6615
|
+
updated_at: '2026-03-22T19:16:42.025Z'
|
|
6724
6616
|
payment_method_id: pm_UkLWZg9DAJ
|
|
6725
6617
|
payment_source_id:
|
|
6726
6618
|
payment_source_type:
|
|
@@ -6768,7 +6660,7 @@ paths:
|
|
|
6768
6660
|
description: Provider-specific data passed to the gateway
|
|
6769
6661
|
required:
|
|
6770
6662
|
- payment_method_id
|
|
6771
|
-
"/api/v3/store/
|
|
6663
|
+
"/api/v3/store/customers/me/payment_setup_sessions/{id}":
|
|
6772
6664
|
parameters:
|
|
6773
6665
|
- name: x-spree-api-key
|
|
6774
6666
|
in: header
|
|
@@ -6817,12 +6709,12 @@ paths:
|
|
|
6817
6709
|
example:
|
|
6818
6710
|
id: pss_UkLWZg9DAJ
|
|
6819
6711
|
status: pending
|
|
6820
|
-
external_id:
|
|
6821
|
-
external_client_secret:
|
|
6712
|
+
external_id: seti_test_e317c3296033e90da516ca73
|
|
6713
|
+
external_client_secret: seti_secret_ba5bcf61fffbdb9637381b6b
|
|
6822
6714
|
external_data:
|
|
6823
6715
|
client_secret: secret_123
|
|
6824
|
-
created_at: '2026-03-
|
|
6825
|
-
updated_at: '2026-03-
|
|
6716
|
+
created_at: '2026-03-22T19:16:43.668Z'
|
|
6717
|
+
updated_at: '2026-03-22T19:16:43.668Z'
|
|
6826
6718
|
payment_method_id: pm_UkLWZg9DAJ
|
|
6827
6719
|
payment_source_id:
|
|
6828
6720
|
payment_source_type:
|
|
@@ -6845,7 +6737,7 @@ paths:
|
|
|
6845
6737
|
message: Payment setup session not found
|
|
6846
6738
|
schema:
|
|
6847
6739
|
"$ref": "#/components/schemas/ErrorResponse"
|
|
6848
|
-
"/api/v3/store/
|
|
6740
|
+
"/api/v3/store/customers/me/payment_setup_sessions/{id}/complete":
|
|
6849
6741
|
parameters:
|
|
6850
6742
|
- name: x-spree-api-key
|
|
6851
6743
|
in: header
|
|
@@ -6895,12 +6787,12 @@ paths:
|
|
|
6895
6787
|
example:
|
|
6896
6788
|
id: pss_UkLWZg9DAJ
|
|
6897
6789
|
status: completed
|
|
6898
|
-
external_id:
|
|
6899
|
-
external_client_secret:
|
|
6790
|
+
external_id: seti_test_516a13ab9d27ce47ca1db052
|
|
6791
|
+
external_client_secret: seti_secret_1cd64dd0150755e6ab2cd971
|
|
6900
6792
|
external_data:
|
|
6901
6793
|
client_secret: secret_123
|
|
6902
|
-
created_at: '2026-03-
|
|
6903
|
-
updated_at: '2026-03-
|
|
6794
|
+
created_at: '2026-03-22T19:16:45.064Z'
|
|
6795
|
+
updated_at: '2026-03-22T19:16:45.093Z'
|
|
6904
6796
|
payment_method_id: pm_UkLWZg9DAJ
|
|
6905
6797
|
payment_source_id: card_UkLWZg9DAJ
|
|
6906
6798
|
payment_source_type: Spree::CreditCard
|
|
@@ -6933,93 +6825,6 @@ paths:
|
|
|
6933
6825
|
type: object
|
|
6934
6826
|
description: Provider-specific completion data
|
|
6935
6827
|
"/api/v3/store/carts/{cart_id}/payments":
|
|
6936
|
-
get:
|
|
6937
|
-
summary: List payments
|
|
6938
|
-
tags:
|
|
6939
|
-
- Carts
|
|
6940
|
-
security:
|
|
6941
|
-
- api_key: []
|
|
6942
|
-
bearer_auth: []
|
|
6943
|
-
description: Returns all payments for the cart.
|
|
6944
|
-
x-codeSamples:
|
|
6945
|
-
- lang: javascript
|
|
6946
|
-
label: Spree SDK
|
|
6947
|
-
source: |-
|
|
6948
|
-
import { createClient } from '@spree/sdk'
|
|
6949
|
-
|
|
6950
|
-
const client = createClient({
|
|
6951
|
-
baseUrl: 'https://your-store.com',
|
|
6952
|
-
publishableKey: '<api-key>',
|
|
6953
|
-
})
|
|
6954
|
-
|
|
6955
|
-
const payments = await client.carts.payments.list('cart_abc123', {
|
|
6956
|
-
bearerToken: '<token>',
|
|
6957
|
-
})
|
|
6958
|
-
parameters:
|
|
6959
|
-
- name: x-spree-api-key
|
|
6960
|
-
in: header
|
|
6961
|
-
required: true
|
|
6962
|
-
schema:
|
|
6963
|
-
type: string
|
|
6964
|
-
- name: Authorization
|
|
6965
|
-
in: header
|
|
6966
|
-
required: false
|
|
6967
|
-
schema:
|
|
6968
|
-
type: string
|
|
6969
|
-
- name: cart_id
|
|
6970
|
-
in: path
|
|
6971
|
-
required: true
|
|
6972
|
-
description: Cart prefixed ID (e.g., cart_abc123)
|
|
6973
|
-
schema:
|
|
6974
|
-
type: string
|
|
6975
|
-
- name: x-spree-token
|
|
6976
|
-
in: header
|
|
6977
|
-
required: false
|
|
6978
|
-
schema:
|
|
6979
|
-
type: string
|
|
6980
|
-
responses:
|
|
6981
|
-
'200':
|
|
6982
|
-
description: payments listed
|
|
6983
|
-
content:
|
|
6984
|
-
application/json:
|
|
6985
|
-
example:
|
|
6986
|
-
data:
|
|
6987
|
-
- id: py_UkLWZg9DAJ
|
|
6988
|
-
payment_method_id: pm_UkLWZg9DAJ
|
|
6989
|
-
response_code: '12345'
|
|
6990
|
-
number: PLHICC30
|
|
6991
|
-
amount: '110.0'
|
|
6992
|
-
display_amount: "$110.00"
|
|
6993
|
-
created_at: '2026-03-19T17:03:29.061Z'
|
|
6994
|
-
updated_at: '2026-03-19T17:03:29.061Z'
|
|
6995
|
-
status: checkout
|
|
6996
|
-
source_type: credit_card
|
|
6997
|
-
source_id: card_UkLWZg9DAJ
|
|
6998
|
-
source:
|
|
6999
|
-
id: card_UkLWZg9DAJ
|
|
7000
|
-
brand: visa
|
|
7001
|
-
last4: '1111'
|
|
7002
|
-
month: 12
|
|
7003
|
-
year: 2027
|
|
7004
|
-
name: Spree Commerce
|
|
7005
|
-
default: false
|
|
7006
|
-
gateway_payment_profile_id:
|
|
7007
|
-
payment_method:
|
|
7008
|
-
id: pm_UkLWZg9DAJ
|
|
7009
|
-
name: Check
|
|
7010
|
-
description:
|
|
7011
|
-
type: Spree::PaymentMethod::Check
|
|
7012
|
-
session_required: false
|
|
7013
|
-
meta:
|
|
7014
|
-
page: 1
|
|
7015
|
-
limit: 25
|
|
7016
|
-
count: 1
|
|
7017
|
-
pages: 1
|
|
7018
|
-
from: 1
|
|
7019
|
-
to: 1
|
|
7020
|
-
in: 1
|
|
7021
|
-
previous:
|
|
7022
|
-
next:
|
|
7023
6828
|
post:
|
|
7024
6829
|
summary: Create payment
|
|
7025
6830
|
tags:
|
|
@@ -7078,11 +6883,11 @@ paths:
|
|
|
7078
6883
|
id: py_UkLWZg9DAJ
|
|
7079
6884
|
payment_method_id: pm_UkLWZg9DAJ
|
|
7080
6885
|
response_code:
|
|
7081
|
-
number:
|
|
6886
|
+
number: PDMIZY8A
|
|
7082
6887
|
amount: '110.0'
|
|
7083
6888
|
display_amount: "$110.00"
|
|
7084
|
-
created_at: '2026-03-
|
|
7085
|
-
updated_at: '2026-03-
|
|
6889
|
+
created_at: '2026-03-22T19:16:46.594Z'
|
|
6890
|
+
updated_at: '2026-03-22T19:16:46.594Z'
|
|
7086
6891
|
status: checkout
|
|
7087
6892
|
source_type:
|
|
7088
6893
|
source_id:
|
|
@@ -7240,22 +7045,20 @@ paths:
|
|
|
7240
7045
|
example:
|
|
7241
7046
|
data:
|
|
7242
7047
|
- id: prod_UkLWZg9DAJ
|
|
7243
|
-
name: Product
|
|
7244
|
-
|
|
7245
|
-
Laboriosam molestias quae earum asperiores expedita voluptatum
|
|
7246
|
-
ab repudiandae. Cum tempore natus iure vero ab explicabo minima
|
|
7247
|
-
deserunt.
|
|
7248
|
-
slug: product-624286
|
|
7048
|
+
name: Product 594366
|
|
7049
|
+
slug: product-594366
|
|
7249
7050
|
meta_description:
|
|
7250
7051
|
meta_keywords:
|
|
7251
7052
|
variant_count: 1
|
|
7252
|
-
available_on: '2025-03-
|
|
7253
|
-
created_at: '2026-03-
|
|
7254
|
-
updated_at: '2026-03-
|
|
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'
|
|
7255
7056
|
purchasable: true
|
|
7256
7057
|
in_stock: false
|
|
7257
7058
|
backorderable: true
|
|
7258
7059
|
available: true
|
|
7060
|
+
description: A comfortable cotton t-shirt.
|
|
7061
|
+
description_html: "<p>A <strong>comfortable</strong> cotton t-shirt.</p>"
|
|
7259
7062
|
default_variant_id: variant_gbHJdmfrXB
|
|
7260
7063
|
thumbnail_url:
|
|
7261
7064
|
tags: []
|
|
@@ -7271,24 +7074,30 @@ paths:
|
|
|
7271
7074
|
price_list_id:
|
|
7272
7075
|
original_price:
|
|
7273
7076
|
- id: prod_gbHJdmfrXB
|
|
7274
|
-
name: Product
|
|
7275
|
-
|
|
7276
|
-
Quibusdam officiis consequuntur quaerat vel quia. Occaecati modi velit ea nemo voluptate quibusdam accusantium dolor. Ipsa neque consequatur sed sunt cumque facilis. Nihil praesentium accusamus alias laborum ex illum reiciendis.
|
|
7277
|
-
Laborum repudiandae accusantium et in rerum nihil. Consequatur ea voluptas eaque recusandae fuga. Voluptas dolore amet distinctio libero consequuntur consequatur sit.
|
|
7278
|
-
Voluptatem inventore error cumque porro earum nemo. Necessitatibus delectus nesciunt dolorem fuga. Delectus nemo animi ut consectetur distinctio. Nesciunt nobis nam corporis ab.
|
|
7279
|
-
Odio natus aspernatur tempora molestiae. Cum blanditiis incidunt consectetur sunt fuga voluptate. Hic tempora accusamus ipsum molestiae quaerat rerum.
|
|
7280
|
-
Commodi eum voluptates nihil libero occaecati quo porro itaque. Quisquam fugit doloremque amet tenetur quaerat. Fugiat quaerat officia sequi eveniet eos quo quas. Sequi ea hic laborum itaque dolore eos eum ad.
|
|
7281
|
-
slug: product-635162
|
|
7077
|
+
name: Product 604253
|
|
7078
|
+
slug: product-604253
|
|
7282
7079
|
meta_description:
|
|
7283
7080
|
meta_keywords:
|
|
7284
7081
|
variant_count: 0
|
|
7285
|
-
available_on: '2025-03-
|
|
7286
|
-
created_at: '2026-03-
|
|
7287
|
-
updated_at: '2026-03-
|
|
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'
|
|
7288
7085
|
purchasable: true
|
|
7289
7086
|
in_stock: false
|
|
7290
7087
|
backorderable: true
|
|
7291
7088
|
available: true
|
|
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.
|
|
7097
|
+
description_html: |-
|
|
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.
|
|
7292
7101
|
default_variant_id: variant_EfhxLZ9ck8
|
|
7293
7102
|
thumbnail_url:
|
|
7294
7103
|
tags: []
|
|
@@ -7390,22 +7199,20 @@ paths:
|
|
|
7390
7199
|
application/json:
|
|
7391
7200
|
example:
|
|
7392
7201
|
id: prod_UkLWZg9DAJ
|
|
7393
|
-
name: Product
|
|
7394
|
-
|
|
7395
|
-
Suscipit rerum incidunt corporis odit cupiditate cum. Incidunt atque voluptas ab quidem odio praesentium. Dolorum expedita rem velit amet voluptatibus. Quisquam eveniet similique ipsa neque eos eligendi delectus iusto. Quam maiores culpa nihil velit libero facilis iusto saepe.
|
|
7396
|
-
Magni nam esse dolor earum debitis nihil vel. Nulla suscipit non aliquid molestias alias excepturi. Labore expedita sequi dolore ratione.
|
|
7397
|
-
Nesciunt aliquam distinctio optio veritatis minima beatae. Praesentium iusto enim cumque eum laborum doloremque nam. Consequatur laboriosam ipsum suscipit similique alias sapiente odio nulla. Eaque in corporis facilis quo.
|
|
7398
|
-
slug: product-746715
|
|
7202
|
+
name: Product 712532
|
|
7203
|
+
slug: product-712532
|
|
7399
7204
|
meta_description:
|
|
7400
7205
|
meta_keywords:
|
|
7401
7206
|
variant_count: 1
|
|
7402
|
-
available_on: '2025-03-
|
|
7403
|
-
created_at: '2026-03-
|
|
7404
|
-
updated_at: '2026-03-
|
|
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'
|
|
7405
7210
|
purchasable: true
|
|
7406
7211
|
in_stock: false
|
|
7407
7212
|
backorderable: true
|
|
7408
7213
|
available: true
|
|
7214
|
+
description: A comfortable cotton t-shirt.
|
|
7215
|
+
description_html: "<p>A <strong>comfortable</strong> cotton t-shirt.</p>"
|
|
7409
7216
|
default_variant_id: variant_gbHJdmfrXB
|
|
7410
7217
|
thumbnail_url:
|
|
7411
7218
|
tags: []
|
|
@@ -7623,9 +7430,9 @@ paths:
|
|
|
7623
7430
|
application/json:
|
|
7624
7431
|
example:
|
|
7625
7432
|
id: cart_UkLWZg9DAJ
|
|
7626
|
-
number:
|
|
7627
|
-
token:
|
|
7628
|
-
email:
|
|
7433
|
+
number: R773425535
|
|
7434
|
+
token: LtsQKZSzbBPknmVvaLAWkrMynt5SWqz1Peh
|
|
7435
|
+
email: cordia_cruickshank@kuvalis.name
|
|
7629
7436
|
customer_note:
|
|
7630
7437
|
currency: USD
|
|
7631
7438
|
locale: en
|
|
@@ -7646,8 +7453,8 @@ paths:
|
|
|
7646
7453
|
display_total: "$110.00"
|
|
7647
7454
|
delivery_total: '100.0'
|
|
7648
7455
|
display_delivery_total: "$100.00"
|
|
7649
|
-
created_at: '2026-03-
|
|
7650
|
-
updated_at: '2026-03-
|
|
7456
|
+
created_at: '2026-03-22T19:16:50.958Z'
|
|
7457
|
+
updated_at: '2026-03-22T19:16:51.014Z'
|
|
7651
7458
|
current_step: address
|
|
7652
7459
|
completed_steps: []
|
|
7653
7460
|
requirements: []
|
|
@@ -7658,8 +7465,8 @@ paths:
|
|
|
7658
7465
|
variant_id: variant_UkLWZg9DAJ
|
|
7659
7466
|
quantity: 1
|
|
7660
7467
|
currency: USD
|
|
7661
|
-
name: Product
|
|
7662
|
-
slug: product-
|
|
7468
|
+
name: Product 996834
|
|
7469
|
+
slug: product-996834
|
|
7663
7470
|
options_text: ''
|
|
7664
7471
|
price: '10.0'
|
|
7665
7472
|
display_price: "$10.00"
|
|
@@ -7678,21 +7485,21 @@ paths:
|
|
|
7678
7485
|
discounted_amount: '10.0'
|
|
7679
7486
|
display_discounted_amount: "$10.00"
|
|
7680
7487
|
display_compare_at_amount: "$0.00"
|
|
7681
|
-
created_at: '2026-03-
|
|
7682
|
-
updated_at: '2026-03-
|
|
7488
|
+
created_at: '2026-03-22T19:16:50.992Z'
|
|
7489
|
+
updated_at: '2026-03-22T19:16:50.992Z'
|
|
7683
7490
|
compare_at_amount:
|
|
7684
7491
|
thumbnail_url:
|
|
7685
7492
|
option_values: []
|
|
7686
7493
|
digital_links: []
|
|
7687
7494
|
fulfillments:
|
|
7688
7495
|
- id: ful_UkLWZg9DAJ
|
|
7689
|
-
number:
|
|
7496
|
+
number: H04891257437
|
|
7690
7497
|
tracking: U10000
|
|
7691
7498
|
tracking_url:
|
|
7692
7499
|
cost: '100.0'
|
|
7693
7500
|
display_cost: "$100.00"
|
|
7694
|
-
created_at: '2026-03-
|
|
7695
|
-
updated_at: '2026-03-
|
|
7501
|
+
created_at: '2026-03-22T19:16:50.997Z'
|
|
7502
|
+
updated_at: '2026-03-22T19:16:51.012Z'
|
|
7696
7503
|
status: pending
|
|
7697
7504
|
fulfillment_type: shipping
|
|
7698
7505
|
fulfilled_at:
|
|
@@ -7706,14 +7513,14 @@ paths:
|
|
|
7706
7513
|
code: UPS_GROUND
|
|
7707
7514
|
stock_location:
|
|
7708
7515
|
id: sloc_UkLWZg9DAJ
|
|
7709
|
-
state_abbr:
|
|
7710
|
-
name:
|
|
7516
|
+
state_abbr: STATE_ABBR_245
|
|
7517
|
+
name: Jeremy Waelchi
|
|
7711
7518
|
address1: 1600 Pennsylvania Ave NW
|
|
7712
7519
|
city: Washington
|
|
7713
7520
|
zipcode: '20500'
|
|
7714
7521
|
country_iso: US
|
|
7715
7522
|
country_name: United States of America
|
|
7716
|
-
state_text:
|
|
7523
|
+
state_text: STATE_ABBR_245
|
|
7717
7524
|
delivery_rates:
|
|
7718
7525
|
- id: dr_UkLWZg9DAJ
|
|
7719
7526
|
delivery_method_id: dm_UkLWZg9DAJ
|
|
@@ -7728,12 +7535,12 @@ paths:
|
|
|
7728
7535
|
payments:
|
|
7729
7536
|
- id: py_UkLWZg9DAJ
|
|
7730
7537
|
payment_method_id: pm_UkLWZg9DAJ
|
|
7731
|
-
response_code: 1-SC-
|
|
7732
|
-
number:
|
|
7538
|
+
response_code: 1-SC-20260322191651363507
|
|
7539
|
+
number: PFV1EY6G
|
|
7733
7540
|
amount: '10.0'
|
|
7734
7541
|
display_amount: "$10.00"
|
|
7735
|
-
created_at: '2026-03-
|
|
7736
|
-
updated_at: '2026-03-
|
|
7542
|
+
created_at: '2026-03-22T19:16:51.367Z'
|
|
7543
|
+
updated_at: '2026-03-22T19:16:51.367Z'
|
|
7737
7544
|
status: checkout
|
|
7738
7545
|
source_type: store_credit
|
|
7739
7546
|
source_id: credit_UkLWZg9DAJ
|
|
@@ -7757,7 +7564,7 @@ paths:
|
|
|
7757
7564
|
first_name: John
|
|
7758
7565
|
last_name: Doe
|
|
7759
7566
|
full_name: John Doe
|
|
7760
|
-
address1:
|
|
7567
|
+
address1: 227 Lovely Street
|
|
7761
7568
|
address2: Northwest
|
|
7762
7569
|
postal_code: '35005'
|
|
7763
7570
|
city: Herndon
|
|
@@ -7765,16 +7572,18 @@ paths:
|
|
|
7765
7572
|
company: Company
|
|
7766
7573
|
country_name: United States of America
|
|
7767
7574
|
country_iso: US
|
|
7768
|
-
state_text:
|
|
7769
|
-
state_abbr:
|
|
7575
|
+
state_text: STATE_ABBR_247
|
|
7576
|
+
state_abbr: STATE_ABBR_247
|
|
7770
7577
|
quick_checkout: false
|
|
7771
|
-
|
|
7578
|
+
is_default_billing: false
|
|
7579
|
+
is_default_shipping: false
|
|
7580
|
+
state_name: STATE_NAME_247
|
|
7772
7581
|
shipping_address:
|
|
7773
7582
|
id: addr_VqXmZF31wY
|
|
7774
7583
|
first_name: John
|
|
7775
7584
|
last_name: Doe
|
|
7776
7585
|
full_name: John Doe
|
|
7777
|
-
address1:
|
|
7586
|
+
address1: 228 Lovely Street
|
|
7778
7587
|
address2: Northwest
|
|
7779
7588
|
postal_code: '35005'
|
|
7780
7589
|
city: Herndon
|
|
@@ -7782,10 +7591,12 @@ paths:
|
|
|
7782
7591
|
company: Company
|
|
7783
7592
|
country_name: United States of America
|
|
7784
7593
|
country_iso: US
|
|
7785
|
-
state_text:
|
|
7786
|
-
state_abbr:
|
|
7594
|
+
state_text: STATE_ABBR_248
|
|
7595
|
+
state_abbr: STATE_ABBR_248
|
|
7787
7596
|
quick_checkout: false
|
|
7788
|
-
|
|
7597
|
+
is_default_billing: false
|
|
7598
|
+
is_default_shipping: false
|
|
7599
|
+
state_name: STATE_NAME_248
|
|
7789
7600
|
payment_methods:
|
|
7790
7601
|
- id: pm_UkLWZg9DAJ
|
|
7791
7602
|
name: Store Credit
|
|
@@ -7865,9 +7676,9 @@ paths:
|
|
|
7865
7676
|
application/json:
|
|
7866
7677
|
example:
|
|
7867
7678
|
id: cart_UkLWZg9DAJ
|
|
7868
|
-
number:
|
|
7869
|
-
token:
|
|
7870
|
-
email:
|
|
7679
|
+
number: R508069384
|
|
7680
|
+
token: wLFFr9QP6WxSANYQsaVVLbpFqhg431JdRzy
|
|
7681
|
+
email: ilona_feeney@lindadams.com
|
|
7871
7682
|
customer_note:
|
|
7872
7683
|
currency: USD
|
|
7873
7684
|
locale: en
|
|
@@ -7888,8 +7699,8 @@ paths:
|
|
|
7888
7699
|
display_total: "$110.00"
|
|
7889
7700
|
delivery_total: '100.0'
|
|
7890
7701
|
display_delivery_total: "$100.00"
|
|
7891
|
-
created_at: '2026-03-
|
|
7892
|
-
updated_at: '2026-03-
|
|
7702
|
+
created_at: '2026-03-22T19:16:52.555Z'
|
|
7703
|
+
updated_at: '2026-03-22T19:16:52.616Z'
|
|
7893
7704
|
current_step: address
|
|
7894
7705
|
completed_steps: []
|
|
7895
7706
|
requirements:
|
|
@@ -7903,8 +7714,8 @@ paths:
|
|
|
7903
7714
|
variant_id: variant_UkLWZg9DAJ
|
|
7904
7715
|
quantity: 1
|
|
7905
7716
|
currency: USD
|
|
7906
|
-
name: Product
|
|
7907
|
-
slug: product-
|
|
7717
|
+
name: Product 1011450
|
|
7718
|
+
slug: product-1011450
|
|
7908
7719
|
options_text: ''
|
|
7909
7720
|
price: '10.0'
|
|
7910
7721
|
display_price: "$10.00"
|
|
@@ -7923,21 +7734,21 @@ paths:
|
|
|
7923
7734
|
discounted_amount: '10.0'
|
|
7924
7735
|
display_discounted_amount: "$10.00"
|
|
7925
7736
|
display_compare_at_amount: "$0.00"
|
|
7926
|
-
created_at: '2026-03-
|
|
7927
|
-
updated_at: '2026-03-
|
|
7737
|
+
created_at: '2026-03-22T19:16:52.592Z'
|
|
7738
|
+
updated_at: '2026-03-22T19:16:52.592Z'
|
|
7928
7739
|
compare_at_amount:
|
|
7929
7740
|
thumbnail_url:
|
|
7930
7741
|
option_values: []
|
|
7931
7742
|
digital_links: []
|
|
7932
7743
|
fulfillments:
|
|
7933
7744
|
- id: ful_UkLWZg9DAJ
|
|
7934
|
-
number:
|
|
7745
|
+
number: H56314409705
|
|
7935
7746
|
tracking: U10000
|
|
7936
7747
|
tracking_url:
|
|
7937
7748
|
cost: '100.0'
|
|
7938
7749
|
display_cost: "$100.00"
|
|
7939
|
-
created_at: '2026-03-
|
|
7940
|
-
updated_at: '2026-03-
|
|
7750
|
+
created_at: '2026-03-22T19:16:52.598Z'
|
|
7751
|
+
updated_at: '2026-03-22T19:16:52.613Z'
|
|
7941
7752
|
status: pending
|
|
7942
7753
|
fulfillment_type: shipping
|
|
7943
7754
|
fulfilled_at:
|
|
@@ -7951,14 +7762,14 @@ paths:
|
|
|
7951
7762
|
code: UPS_GROUND
|
|
7952
7763
|
stock_location:
|
|
7953
7764
|
id: sloc_UkLWZg9DAJ
|
|
7954
|
-
state_abbr:
|
|
7955
|
-
name:
|
|
7765
|
+
state_abbr: STATE_ABBR_253
|
|
7766
|
+
name: Brinda Krajcik
|
|
7956
7767
|
address1: 1600 Pennsylvania Ave NW
|
|
7957
7768
|
city: Washington
|
|
7958
7769
|
zipcode: '20500'
|
|
7959
7770
|
country_iso: US
|
|
7960
7771
|
country_name: United States of America
|
|
7961
|
-
state_text:
|
|
7772
|
+
state_text: STATE_ABBR_253
|
|
7962
7773
|
delivery_rates:
|
|
7963
7774
|
- id: dr_UkLWZg9DAJ
|
|
7964
7775
|
delivery_method_id: dm_UkLWZg9DAJ
|
|
@@ -7976,7 +7787,7 @@ paths:
|
|
|
7976
7787
|
first_name: John
|
|
7977
7788
|
last_name: Doe
|
|
7978
7789
|
full_name: John Doe
|
|
7979
|
-
address1:
|
|
7790
|
+
address1: 235 Lovely Street
|
|
7980
7791
|
address2: Northwest
|
|
7981
7792
|
postal_code: '35005'
|
|
7982
7793
|
city: Herndon
|
|
@@ -7984,16 +7795,18 @@ paths:
|
|
|
7984
7795
|
company: Company
|
|
7985
7796
|
country_name: United States of America
|
|
7986
7797
|
country_iso: US
|
|
7987
|
-
state_text:
|
|
7988
|
-
state_abbr:
|
|
7798
|
+
state_text: STATE_ABBR_255
|
|
7799
|
+
state_abbr: STATE_ABBR_255
|
|
7989
7800
|
quick_checkout: false
|
|
7990
|
-
|
|
7801
|
+
is_default_billing: false
|
|
7802
|
+
is_default_shipping: false
|
|
7803
|
+
state_name: STATE_NAME_255
|
|
7991
7804
|
shipping_address:
|
|
7992
7805
|
id: addr_VqXmZF31wY
|
|
7993
7806
|
first_name: John
|
|
7994
7807
|
last_name: Doe
|
|
7995
7808
|
full_name: John Doe
|
|
7996
|
-
address1:
|
|
7809
|
+
address1: 236 Lovely Street
|
|
7997
7810
|
address2: Northwest
|
|
7998
7811
|
postal_code: '35005'
|
|
7999
7812
|
city: Herndon
|
|
@@ -8001,10 +7814,12 @@ paths:
|
|
|
8001
7814
|
company: Company
|
|
8002
7815
|
country_name: United States of America
|
|
8003
7816
|
country_iso: US
|
|
8004
|
-
state_text:
|
|
8005
|
-
state_abbr:
|
|
7817
|
+
state_text: STATE_ABBR_256
|
|
7818
|
+
state_abbr: STATE_ABBR_256
|
|
8006
7819
|
quick_checkout: false
|
|
8007
|
-
|
|
7820
|
+
is_default_billing: false
|
|
7821
|
+
is_default_shipping: false
|
|
7822
|
+
state_name: STATE_NAME_256
|
|
8008
7823
|
payment_methods: []
|
|
8009
7824
|
schema:
|
|
8010
7825
|
"$ref": "#/components/schemas/Cart"
|
|
@@ -8068,9 +7883,9 @@ paths:
|
|
|
8068
7883
|
data:
|
|
8069
7884
|
- id: wl_UkLWZg9DAJ
|
|
8070
7885
|
name: My Wishlist
|
|
8071
|
-
token:
|
|
8072
|
-
created_at: '2026-03-
|
|
8073
|
-
updated_at: '2026-03-
|
|
7886
|
+
token: Vwj3bMdaJnraghvRFjGUaS44
|
|
7887
|
+
created_at: '2026-03-22T19:16:53.379Z'
|
|
7888
|
+
updated_at: '2026-03-22T19:16:53.379Z'
|
|
8074
7889
|
is_default: false
|
|
8075
7890
|
is_private: true
|
|
8076
7891
|
meta:
|
|
@@ -8146,9 +7961,9 @@ paths:
|
|
|
8146
7961
|
example:
|
|
8147
7962
|
id: wl_gbHJdmfrXB
|
|
8148
7963
|
name: Birthday Ideas
|
|
8149
|
-
token:
|
|
8150
|
-
created_at: '2026-03-
|
|
8151
|
-
updated_at: '2026-03-
|
|
7964
|
+
token: utDj15kp1Mf9WKdEZ69VoMMv
|
|
7965
|
+
created_at: '2026-03-22T19:16:54.900Z'
|
|
7966
|
+
updated_at: '2026-03-22T19:16:54.900Z'
|
|
8152
7967
|
is_default: false
|
|
8153
7968
|
is_private: true
|
|
8154
7969
|
schema:
|
|
@@ -8244,9 +8059,9 @@ paths:
|
|
|
8244
8059
|
example:
|
|
8245
8060
|
id: wl_UkLWZg9DAJ
|
|
8246
8061
|
name: My Wishlist
|
|
8247
|
-
token:
|
|
8248
|
-
created_at: '2026-03-
|
|
8249
|
-
updated_at: '2026-03-
|
|
8062
|
+
token: WmxC8NpXKd2Hi3TKmBqM3xHq
|
|
8063
|
+
created_at: '2026-03-22T19:16:56.073Z'
|
|
8064
|
+
updated_at: '2026-03-22T19:16:56.073Z'
|
|
8250
8065
|
is_default: false
|
|
8251
8066
|
is_private: true
|
|
8252
8067
|
schema:
|
|
@@ -8308,9 +8123,9 @@ paths:
|
|
|
8308
8123
|
example:
|
|
8309
8124
|
id: wl_UkLWZg9DAJ
|
|
8310
8125
|
name: Updated Name
|
|
8311
|
-
token:
|
|
8312
|
-
created_at: '2026-03-
|
|
8313
|
-
updated_at: '2026-03-
|
|
8126
|
+
token: GGZHEu1GLeDMRNeX4pfBZoRW
|
|
8127
|
+
created_at: '2026-03-22T19:16:57.261Z'
|
|
8128
|
+
updated_at: '2026-03-22T19:16:57.309Z'
|
|
8314
8129
|
is_default: false
|
|
8315
8130
|
is_private: true
|
|
8316
8131
|
schema:
|
|
@@ -8422,17 +8237,17 @@ paths:
|
|
|
8422
8237
|
variant_id: variant_gbHJdmfrXB
|
|
8423
8238
|
wishlist_id: wl_UkLWZg9DAJ
|
|
8424
8239
|
quantity: 1
|
|
8425
|
-
created_at: '2026-03-
|
|
8426
|
-
updated_at: '2026-03-
|
|
8240
|
+
created_at: '2026-03-22T19:16:58.572Z'
|
|
8241
|
+
updated_at: '2026-03-22T19:16:58.572Z'
|
|
8427
8242
|
variant:
|
|
8428
8243
|
id: variant_gbHJdmfrXB
|
|
8429
8244
|
product_id: prod_gbHJdmfrXB
|
|
8430
|
-
sku: SKU-
|
|
8245
|
+
sku: SKU-121
|
|
8431
8246
|
options_text: ''
|
|
8432
8247
|
track_inventory: true
|
|
8433
8248
|
media_count: 0
|
|
8434
|
-
created_at: '2026-03-
|
|
8435
|
-
updated_at: '2026-03-
|
|
8249
|
+
created_at: '2026-03-22T19:16:58.544Z'
|
|
8250
|
+
updated_at: '2026-03-22T19:16:58.553Z'
|
|
8436
8251
|
thumbnail_url:
|
|
8437
8252
|
purchasable: true
|
|
8438
8253
|
in_stock: false
|
|
@@ -8530,51 +8345,21 @@ servers:
|
|
|
8530
8345
|
default: localhost:3000
|
|
8531
8346
|
tags:
|
|
8532
8347
|
- name: Authentication
|
|
8533
|
-
description: Customer authentication
|
|
8534
|
-
- name: Store
|
|
8535
|
-
description: Store information and settings
|
|
8348
|
+
description: Customer authentication (login, logout, token refresh)
|
|
8536
8349
|
- name: Product Catalog
|
|
8537
|
-
description: Products
|
|
8538
|
-
- name:
|
|
8539
|
-
description: Countries, currencies, and locales available in the store
|
|
8540
|
-
- name: Cart
|
|
8350
|
+
description: Products and categories
|
|
8351
|
+
- name: Carts
|
|
8541
8352
|
description: Shopping cart management
|
|
8542
|
-
- name: Checkout
|
|
8543
|
-
description: Checkout flow and order updates
|
|
8544
8353
|
- name: Orders
|
|
8545
8354
|
description: Order lookup
|
|
8546
8355
|
- name: Customers
|
|
8547
8356
|
description: Customer account, addresses, saved payment methods, and order history
|
|
8357
|
+
- name: Markets
|
|
8358
|
+
description: Markets, countries, currencies, and locales
|
|
8548
8359
|
- name: Wishlists
|
|
8549
8360
|
description: Customer wishlists
|
|
8550
8361
|
- name: Digitals
|
|
8551
8362
|
description: Digital product downloads
|
|
8552
|
-
- name: Markets
|
|
8553
|
-
description: Market information and resolution
|
|
8554
|
-
x-tagGroups:
|
|
8555
|
-
- name: Store
|
|
8556
|
-
tags:
|
|
8557
|
-
- Store
|
|
8558
|
-
- Internationalization
|
|
8559
|
-
- Markets
|
|
8560
|
-
- name: Catalog
|
|
8561
|
-
tags:
|
|
8562
|
-
- Product Catalog
|
|
8563
|
-
- name: Cart
|
|
8564
|
-
tags:
|
|
8565
|
-
- Cart
|
|
8566
|
-
- name: Checkout
|
|
8567
|
-
tags:
|
|
8568
|
-
- Checkout
|
|
8569
|
-
- name: Orders
|
|
8570
|
-
tags:
|
|
8571
|
-
- Orders
|
|
8572
|
-
- name: Customer
|
|
8573
|
-
tags:
|
|
8574
|
-
- Authentication
|
|
8575
|
-
- Customers
|
|
8576
|
-
- Wishlists
|
|
8577
|
-
- Digitals
|
|
8578
8363
|
components:
|
|
8579
8364
|
securitySchemes:
|
|
8580
8365
|
api_key:
|
|
@@ -8769,6 +8554,10 @@ components:
|
|
|
8769
8554
|
nullable: true
|
|
8770
8555
|
quick_checkout:
|
|
8771
8556
|
type: boolean
|
|
8557
|
+
is_default_billing:
|
|
8558
|
+
type: boolean
|
|
8559
|
+
is_default_shipping:
|
|
8560
|
+
type: boolean
|
|
8772
8561
|
state_name:
|
|
8773
8562
|
type: string
|
|
8774
8563
|
nullable: true
|
|
@@ -8788,6 +8577,8 @@ components:
|
|
|
8788
8577
|
- state_text
|
|
8789
8578
|
- state_abbr
|
|
8790
8579
|
- quick_checkout
|
|
8580
|
+
- is_default_billing
|
|
8581
|
+
- is_default_shipping
|
|
8791
8582
|
- state_name
|
|
8792
8583
|
x-typelizer: true
|
|
8793
8584
|
Base:
|
|
@@ -10130,9 +9921,6 @@ components:
|
|
|
10130
9921
|
type: string
|
|
10131
9922
|
name:
|
|
10132
9923
|
type: string
|
|
10133
|
-
description:
|
|
10134
|
-
type: string
|
|
10135
|
-
nullable: true
|
|
10136
9924
|
slug:
|
|
10137
9925
|
type: string
|
|
10138
9926
|
meta_description:
|
|
@@ -10158,6 +9946,12 @@ components:
|
|
|
10158
9946
|
type: boolean
|
|
10159
9947
|
available:
|
|
10160
9948
|
type: boolean
|
|
9949
|
+
description:
|
|
9950
|
+
type: string
|
|
9951
|
+
nullable: true
|
|
9952
|
+
description_html:
|
|
9953
|
+
type: string
|
|
9954
|
+
nullable: true
|
|
10161
9955
|
default_variant_id:
|
|
10162
9956
|
type: string
|
|
10163
9957
|
thumbnail_url:
|
|
@@ -10200,7 +9994,6 @@ components:
|
|
|
10200
9994
|
required:
|
|
10201
9995
|
- id
|
|
10202
9996
|
- name
|
|
10203
|
-
- description
|
|
10204
9997
|
- slug
|
|
10205
9998
|
- meta_description
|
|
10206
9999
|
- meta_keywords
|
|
@@ -10212,6 +10005,8 @@ components:
|
|
|
10212
10005
|
- in_stock
|
|
10213
10006
|
- backorderable
|
|
10214
10007
|
- available
|
|
10008
|
+
- description
|
|
10009
|
+
- description_html
|
|
10215
10010
|
- default_variant_id
|
|
10216
10011
|
- thumbnail_url
|
|
10217
10012
|
- tags
|