-
Notifications
You must be signed in to change notification settings - Fork 3
/
swagger.yaml
6346 lines (6163 loc) · 215 KB
/
swagger.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
description: |
SCAYLE Storefront API is a REST API used to access your product data in any customer-facing application.
Some common scenarios include retrieving campaigns, promotions, categories or configuration. You can also use it to save baskets or wishlists for individual customers and filter and search products.
Core concepts of the Storefront API are:
Variant: Any distinct sellable item, for example: a blue colored shirt in size L. Available quantity/stock information is always on variant level.
Product: A product is a collection of one or more variants with some shared attributes, for example: A blue colored shirt (product) available in different sizes (variants). A product will be sold out when all its variants are sold out.
Sibling: A product closely related to another product, for example, the same shirt by the same brand, but in another color.
Category: Each product can be assigned to one or more category nodes in the category tree.
Attribute: Attributes are, for example, size, material, color. Attributes can be assigned to product level or variant level.
Filter: Any criteria available to filter a list of products, for example: an attribute or a category.
Basket: The basket holds variants that a customer intends to buy and has added to his shopping cart.
Wishlist: Customers can add variants to a wishlist to remember them or buy them later.
Requests
Base URL: https://{{tenant-space}}.storefront.api.scayle.cloud
Authentication
1. Generate access token in the SCAYLE Panel > Shops > Storefront > API Keys.
2. Provide the generated access token in the X-Access-Token Header
Note: After the token is generated in the SCAYLE Panel, it can take some time for changes to take effect.
version: '{{version}}'
title: Storefront API Documentation
tags:
- name: products
description: Get products
- name: variants
description: Get product variants
- name: campaigns
description: Get campaigns available per shop
- name: categories
description: Get categories
- name: attributes
description: Get attributes
- name: search-v1
description: Deprecated Search Endpoints
- name: search-v2
description: Search for Categories, Attributes & more
- name: filters
description: Get filters
- name: baskets
description: Manage baskets
- name: wishlists
description: Manage wishlists
- name: shop-configuration
description: Manage the shop configuration
- name: navigation
description: Manage navigation
- name: brands
description: Manage brands
- name: redirects
description: Manage redirects
- name: promotions
description: Manage promotions
paths:
# Basket
/v1/baskets/{basketId}:
get:
tags:
- baskets
summary: Get a basket
description: |
Fetch the content of an existing basket.
Baskets are created on demand when the first variant is added to it.
Fetching a non existent basket will not return an error but instead just return an empty basket.
Using the `with` parameter, it is possible to retrieve extra information in the response (see parameters below).
operationId: fetch-basket-by-key
parameters:
- $ref: '#/components/parameters/OrderCustomData'
- $ref: '#/components/parameters/CustomerToken'
- $ref: '#/components/parameters/basketId'
- $ref: '#/components/parameters/campaignKey'
- $ref: '#/components/parameters/includeItemsWithoutProductData'
- $ref: '#/components/parameters/skipAvailabilityCheck'
- $ref: '#/components/parameters/basketWith'
- $ref: '#/components/parameters/shopId'
responses:
'200':
description: Successful Operation
content:
application/json:
schema:
$ref: '#/components/schemas/Basket'
example:
$ref: '#/components/examples/basket'
'400':
description: Required parameter is missing or invalid.
'401':
description: Authentication failed.
'408':
description: Basket is currently locked due to another request, please retry.
'424':
description: The API Request failed due to an underlying dependency error.
x-codeSamples:
- lang: 'bash'
label: 'CLI'
source: |
curl --location 'https://{{tenant-space}}.storefront.api.scayle.cloud/v1/basket/{{basketId}}?shopId={{shopId}}' \
--header 'X-Access-Token: {{ACCESSTOKEN}}'
- lang: 'ts'
label: 'Typescript'
source: |
const response = await client.basket.get("myshop_customer_1234");
console.log(response.basket)
/v1/baskets/{basketId}/items:
post:
tags:
- baskets
summary: Add a variant
description: |
Adds a new variant to a given basket, so the user can purchase it in the checkout process.
Baskets are created on demand when the first variant is added to the basket.
Only one variant can be added to the basket with each request. Use multiple requests to add more variants.
The variant and quantity to be added is specified in the POST request body (see below).
The only strictly required parameters are `variantId` and `quantity`.
The response will return the updated content of the basket.
operationId: add-basket-item
parameters:
- $ref: '#/components/parameters/OrderCustomData'
- $ref: '#/components/parameters/CustomerToken'
- $ref: '#/components/parameters/basketId'
- $ref: '#/components/parameters/campaignKey'
- $ref: '#/components/parameters/includeItemsWithoutProductData'
- $ref: '#/components/parameters/pricePromotionKey'
- $ref: '#/components/parameters/skipAvailabilityCheck'
- $ref: '#/components/parameters/basketWith'
- $ref: '#/components/parameters/shopId'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateBasketItemBody'
examples:
Basic:
value:
variantId: 5
quantity: 1
WithCustomData:
value:
variantId: 5
quantity: 1
customData:
field1: "value1"
isApp: false
WithPromotion:
value:
variantId: 5
quantity: 1
promotionId: "65e04665b1d03700f7864e4c"
responses:
'201':
description: The variant was added to the Basket with all of the request quantity.
content:
application/json:
schema:
$ref: '#/components/schemas/Basket'
example:
$ref: '#/components/examples/basket'
'206':
description: The variant was added to the Basket however with a reduced quantity.
content:
application/json:
schema:
$ref: '#/components/schemas/Basket'
example:
$ref: '#/components/examples/basket'
'400':
description: Required parameter is missing or invalid.
'401':
description: Authentication failed.
'404':
description: Variant not found.
'408':
description: Basket is currently locked due to another request, please retry.
'409':
description: Basket item for the given variant already exists.
content:
application/json:
schema:
$ref: '#/components/schemas/Basket'
example:
$ref: '#/components/examples/basket'
'412':
description: The variant is out of stock.
content:
application/json:
schema:
$ref: '#/components/schemas/Basket'
example:
$ref: '#/components/examples/basket'
'413':
description: The Basket has reached it's maximum size of items.
content:
application/json:
schema:
$ref: '#/components/schemas/Basket'
example:
$ref: '#/components/examples/basket'
'424':
description: The API Request failed due to an underlying dependency error.
x-codeSamples:
- lang: 'bash'
label: 'CLI'
source: |
curl --location --request POST 'https://{{tenant-space}}.storefront.api.scayle.cloud/v1/basket/{{basketId}}/items?shopId={{shopId}}' \
--header 'X-Access-Token: {{ACCESSTOKEN}}'
--data '{
"quantity": 2,
"variantId": 1
}'
- lang: 'ts'
label: 'Typescript'
source: |
const response = await client.basket.addItem(
"myshop_customer_1234",
1, // variantId
2, // quantity
);
const item = response.basket.items[0];
console.log(item);
/v1/baskets/{basketId}/items/{itemKey}:
patch:
tags:
- baskets
summary: Update an item
description: |
Updates the quantity of a basket item or other properties such as the custom data or the promotion id.
To update the item you will need to use the item key which can be found when fetching the Basket.
You can't update the variant id of a given basket item, for this operation you would need to do a delete and then an add operation.
The response will show the updated content of the basket.
operationId: update-basket-item
parameters:
- $ref: '#/components/parameters/OrderCustomData'
- $ref: '#/components/parameters/CustomerToken'
- $ref: '#/components/parameters/basketId'
- $ref: '#/components/parameters/basketItemKey'
- $ref: '#/components/parameters/campaignKey'
- $ref: '#/components/parameters/includeItemsWithoutProductData'
- $ref: '#/components/parameters/skipAvailabilityCheck'
- $ref: '#/components/parameters/basketWith'
- $ref: '#/components/parameters/shopId'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateBasketItemBody'
examples:
Basic:
value:
quantity: 2
WithCustomData:
value:
quantity: 2
customData:
field1: "value1"
isApp: true
responses:
'200':
description: The Basket Item was successfully updated.
content:
application/json:
schema:
$ref: '#/components/schemas/Basket'
example:
$ref: '#/components/examples/basket'
'206':
description: The Basket Item was updated however with a reduced quantity.
content:
application/json:
schema:
$ref: '#/components/schemas/Basket'
example:
$ref: '#/components/examples/basket'
'400':
description: Required parameter is missing or invalid.
'401':
description: Authentication failed.
'404':
description: The Basket Item doesn't exist for the referenced Basket.
'408':
description: Basket is currently locked due to another request, please retry.
'424':
description: The API Request failed due to an underlying dependency error.
x-codeSamples:
- lang: 'bash'
label: 'CLI'
source: |
curl --location --request PATCH 'https://{{tenant-space}}.storefront.api.scayle.cloud/v1/basket/{{basketId}}/items/{{itemKey}}?shopId={{shopId}}' \
--header 'X-Access-Token: {{ACCESSTOKEN}}'
--data '{
"quantity": 4
}'
- lang: 'ts'
label: 'Typescript'
source: |
const response = await client.basket.updateItem(
"myshop_customer_1234",
"aec0f393f63d0e70f0418d10cc1acb2e", //item key
3 // quantity
);
console.log(response.basket);
delete:
tags:
- baskets
summary: Delete an item
description: |
Removes a specific item from a given basket using the item's key.
The item key can be found when fetching the Basket.
The response will return the updated content of the basket.
operationId: remove-basket-item
parameters:
- $ref: '#/components/parameters/OrderCustomData'
- $ref: '#/components/parameters/CustomerToken'
- $ref: '#/components/parameters/basketId'
- $ref: '#/components/parameters/basketItemKey'
- $ref: '#/components/parameters/campaignKey'
- $ref: '#/components/parameters/includeItemsWithoutProductData'
- $ref: '#/components/parameters/basketWith'
- $ref: '#/components/parameters/shopId'
responses:
'200':
description: The Basket Item was successfully deleted.
content:
application/json:
schema:
$ref: '#/components/schemas/Basket'
example:
$ref: '#/components/examples/basket'
'400':
description: Required parameter is missing or invalid.
'401':
description: Authentication failed.
'404':
description: The Basket Item doesn't exist for the referenced Basket.
'408':
description: Basket is currently locked due to another request, please retry.
'424':
description: The API Request failed due to an underlying dependency error.
x-codeSamples:
- lang: 'bash'
label: 'CLI'
source: |
curl --location --request DELETE 'https://{{tenant-space}}.storefront.api.scayle.cloud/v1/basket/{{basketId}}/items/{{itemKey}}?shopId={{shopId}}' \
--header 'X-Access-Token: {{ACCESSTOKEN}}'
- lang: 'ts'
label: 'Typescript'
source: |
const response = await client.basket.deleteItem(
"myshop_customer_1234",
"d3467d079a1cc261b2b818be9fce0212" // item key
);
console.log(response.items);
# Variants
'/v1/variants':
get:
tags:
- variants
summary: List variants
description: |
Get multiple variants by specifying variant IDs.
__Fetching variants by variant ID__
To fetch a list of known variants, simply specify them by variant ID using the `ids` parameter, for example, `/v1/variants?ids=1,2,3`.
***
__Selecting included variant data__
By default, only basic variant data is included in the response. Use the `with` parameters (see below) to include more variant data.
To see all available variant data, for example, for debugging, you might use unrestricted `with` parameters: `?with=attributes,advancedAttributes,lowestPriorPrice`.
Beware of using unrestricted `with` parameters in production applications. It will result in slow performance, as download sizes for full variant data lists can be quite big. Including only exactly what is needed will be best for performance when downloading and parsing the result.
A typical request for a variant list optimized for maximum performance is, for example, `?with=attributes:key(ean|shopSize),advancedAttributes:key(modelHeight),lowestPriorPrice`.
operationId: fetch-variants
parameters:
- $ref: '#/components/parameters/shopId'
- $ref: '#/components/parameters/variantIds'
- $ref: '#/components/parameters/campaignKey'
- $ref: '#/components/parameters/pricePromotionKey'
- $ref: '#/components/parameters/variantsWith'
responses:
200:
description: successful operation
content:
application/json:
schema:
type: object
properties:
entities:
type: array
items:
$ref: '#/components/schemas/Variant'
pagination:
$ref: '#/components/schemas/Pagination'
example:
pagination:
current: 2
total: 2
perPage: 2
page: 1
first: 1
prev: 1
next: 1
last: 1
entities:
- id: 1
referenceKey: external-reference
attributes:
size:
id: 2
key: size
label: Size
type: ''
multiSelect: false
values:
id: 15
label: S
value: s
firstLiveAt: '2023-09-22T14:36:42+00:00'
createdAt: '2023-09-22T14:34:45+00:00'
updatedAt: '2024-04-23T09:32:13+00:00'
stock:
supplierId: 3
warehouseId: 1
quantity: 21
isSellableWithoutStock: false
price:
currencyCode: EUR
withTax: 4999
withoutTax: 4201
recommendedRetailPrice:
tax:
vat:
amount: 798
rate: 0.19
appliedReductions: [ ]
customData: { }
- id: 5
referenceKey: external-reference
attributes:
size:
id: 2
key: size
label: Size
type: ''
multiSelect: false
values:
id: 18
label: M
value: m
firstLiveAt: '2023-09-22T14:35:29+00:00'
createdAt: '2023-09-22T14:34:45+00:00'
updatedAt: '2024-04-23T03:17:39+00:00'
stock:
supplierId: 3
warehouseId: 1
quantity: 7
isSellableWithoutStock: false
price:
currencyCode: EUR
withTax: 4999
withoutTax: 4201
recommendedRetailPrice:
tax:
vat:
amount: 798
rate: 0.19
appliedReductions: [ ]
customData: { }
400:
$ref: '#/components/responses/RequestError'
401:
$ref: '#/components/responses/Unauthorized'
x-codeSamples:
- lang: 'bash'
label: 'CLI'
source: |
curl --location 'https://{{tenant-space}}.storefront.api.scayle.cloud/v1/variants?ids={{variantIds}}&shopId={{shopId}}'
- lang: 'ts'
label: 'Typescript'
source: |
const variants = await client.variants.getByIds([123, 456]);
console.log(variants);
/v1/variants/{variantId}:
get:
tags:
- variants
summary: Get a variant
description: Get one variant by variantId.
operationId: fetch-variant-by-id
parameters:
- $ref: '#/components/parameters/shopId'
- $ref: '#/components/parameters/variantId'
- $ref: '#/components/parameters/campaignKey'
- $ref: '#/components/parameters/pricePromotionKey'
- $ref: '#/components/parameters/variantsWith'
responses:
200:
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/Variant'
example:
id: 5
referenceKey: external-reference
attributes:
size:
id: 2
key: size
label: Size
type: ''
multiSelect: false
values:
id: 18
label: M
value: m
firstLiveAt: '2023-09-22T14:35:29+00:00'
createdAt: '2023-09-22T14:34:45+00:00'
updatedAt: '2024-04-23T03:17:39+00:00'
stock:
supplierId: 3
warehouseId: 1
quantity: 7
isSellableWithoutStock: false
price:
currencyCode: EUR
withTax: 4999
withoutTax: 4201
recommendedRetailPrice:
tax:
vat:
amount: 798
rate: 0.19
appliedReductions: [ ]
customData: { }
400:
$ref: '#/components/responses/RequestError'
401:
$ref: '#/components/responses/Unauthorized'
404:
$ref: '#/components/responses/NotFound'
x-codeSamples:
- lang: 'bash'
label: 'CLI'
source: |
curl --location 'https://{{tenant-space}}.storefront.api.scayle.cloud/v1/variants/{{variantId}}?shopId={{shopId}}'
# Products
/v1/products:
get:
tags:
- products
summary: List products
description: |
Requesting this API endpoint is the main way to retrieve your product data to display in any context. A product is basically any individual item in the shop.
There are basically two ways to use this endpoint:
* Search for products by specifying search/filter parameters
* Directly fetch known products by their product IDs
***
__Searching for products__
The various `filter` parameters can be used to restrict the list of products included in the response (see available parameters below).
You can also use the `/v1/filters` endpoint to determine which filters are available in the current context. This way, you can, for example, enable users to narrow down general product lists to very specific results by incrementally adding more and more filter parameters.
The `minProductId`, `includeSellableForFree`, and `includeSoldOut` parameters can further restrict or expand the search results (see below).
***
__Fetching products by product ID__
To fetch a list of known products, simply specify them by product ID using the `ids` parameter, for example, `/v1/products?ids=1,2,3`. This offers a notable performance advantage since it eliminates the need for a search step.
If you specify the `ids` parameter, all other search/filter parameters will be ignored.
***
__Selecting included product data__
By default, only basic product data is included in the response. Use the `with` parameters (see below) to include more product data.
To see all available product data, for example, for debugging, you might use unrestricted `with` parameters: `?with=attributes,advancedAttributes,categories,images.attributes,priceRange,reductionRange,siblings,variants.attributes,variants.advancedAttributes`.
Beware of using these unrestricted `with` parameters in production applications. It will result in slow performance, as download sizes for full product data lists can be quite big. Including only exactly what is needed will be best for performance when downloading and parsing the result.
A typical request for a product list optimized for maximum performance is, for example, `?with=attributes:key(brand|color),advancedAttributes:key(description),variants.attributes:key(vendorSize),images,priceRange,reductionRange`.
***
__Sorting__
You can order the results using different sorting strategies, based on the provided `sort`, `sortingKey`, and `sortDir` parameters.
* __Default sorting__: If no sorting parameter is specified, the products will be sorted by product ID. To specify the order, use the `sortDir` parameter (default `desc`, highest product ID first).
* __Price sorting__: `sort=price` will sort the results by price. To specify the order, use the `sortDir` parameter (default `desc`, highest price first).
* __Reduction sorting__: `sort=reduction` will sort the results by price reduction. This sorting is based on the available `appliedReductions` for each product's variants. When a `campaignKey` is also provided, the sorting will also consider the campaign reduction. To specify the order, use the `sortDir` parameter (default `desc`, highest reduction first).
* __Date sorting__: `sort=new` will order the products by `firstLiveAt` field. If `firstLiveAt` is not set the products will be ordered by creation date. To specify the order, use the `sortDir` parameter (default `desc`, most recent date first).
* __Key sorting__: `sortingKey` will order the results based on your custom sorting keys, for example, `sortingKey=wcc-default`. If the `sortingKey` parameter has been provided, the `sort` parameter will be ignored.
operationId: fetch-products
parameters:
- $ref: '#/components/parameters/productIds'
- $ref: '#/components/parameters/campaignKey'
- $ref: '#/components/parameters/includeSellableForFree'
- $ref: '#/components/parameters/includeSoldOut'
- $ref: '#/components/parameters/referenceKey'
- $ref: '#/components/parameters/pricePromotionKey'
- $ref: '#/components/parameters/sort'
- $ref: '#/components/parameters/sortDir'
- $ref: '#/components/parameters/sortingKey'
- $ref: '#/components/parameters/filterAttributeKey'
- $ref: '#/components/parameters/negativeFilterAttributeKey'
- $ref: '#/components/parameters/negativeFilterIds'
- $ref: '#/components/parameters/orFiltersOperator'
- $ref: '#/components/parameters/filterCategory'
- $ref: '#/components/parameters/filterEan'
- $ref: '#/components/parameters/filterIsnew'
- $ref: '#/components/parameters/filterMaxPrice'
- $ref: '#/components/parameters/filterMaxReduction'
- $ref: '#/components/parameters/filterMinPrice'
- $ref: '#/components/parameters/filterMinReduction'
- $ref: '#/components/parameters/filterReferenceKey'
- $ref: '#/components/parameters/filterVariantReferenceKey'
- $ref: '#/components/parameters/filterVariantAttributeKey'
- $ref: '#/components/parameters/filterSale'
- $ref: '#/components/parameters/filterMasterKey'
- $ref: '#/components/parameters/filterTerm'
- $ref: '#/components/parameters/filterMinFirstLiveAt'
- $ref: '#/components/parameters/filterMerchantId'
- $ref: '#/components/parameters/filterHasCampaignReduction'
- $ref: '#/components/parameters/productsWith'
- $ref: '#/components/parameters/minProductId'
- $ref: '#/components/parameters/disableFuzziness'
- $ref: '#/components/parameters/page'
- $ref: '#/components/parameters/perPage'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/offset'
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: object
properties:
entities:
type: array
items:
$ref: '#/components/schemas/Product'
pagination:
oneOf:
- $ref: '#/components/schemas/Pagination'
- $ref: '#/components/schemas/OffsetPagination'
example:
pagination:
current: 10
total: 95
perPage: 10
page: 1
first: 1
prev: 1
next: 2
last: 10
entities:
- id: 7
isActive: true
isSoldOut: false
isNew: false
createdAt: '2023-09-22T14:34:44+00:00'
updatedAt: '2024-04-10T10:30:08+00:00'
indexedAt: '2024-04-23T17:22:14+00:00'
firstLiveAt: '2023-09-22T14:35:29+00:00'
masterKey: master-key
referenceKey: external-reference
attributes:
name:
id: 20005
key: name
label: Name
type: ''
multiSelect: false
values:
id: 20005
label: Women dress
value: name
color:
id: 1
key: color
label: Color
type: ''
multiSelect: true
values:
- id: 38932
label: Black
value: black
brand:
id: 3
key: brand
label: Brand
type: ''
multiSelect: false
values:
id: 232
label: SCAYLE
value: scayle
advancedAttributes:
combineWith:
id: 1223
key: combineWith
label: Combine with Products
type: ''
values:
- fieldSet:
- - value: '51'
- value: '63'
- value: '27'
groupSet: [ ]
images:
- hash: images/52d08cac15a71b5c02428c7989f634b9
attributes:
imageFocus:
id: 1253
key: imageFocus
label: Image Focus
type: ''
multiSelect: false
values:
id: 66484
label: Product
value: product
- hash: images/3e81768c43aab1d12b3c53956a64ff2d.jpg
attributes:
imageFocus:
id: 1253
key: imageFocus
label: Image Focus
type: ''
multiSelect: false
values:
id: 66483
label: Detail
value: detail
variants:
- id: 1
referenceKey: external-reference
attributes:
size:
id: 2
key: size
label: Size
type: ''
multiSelect: false
values:
id: 15
label: S
value: s
firstLiveAt: '2023-09-22T14:36:42+00:00'
createdAt: '2023-09-22T14:34:45+00:00'
updatedAt: '2024-04-23T09:32:13+00:00'
stock:
supplierId: 3
warehouseId: 1
quantity: 21
isSellableWithoutStock: false
price:
currencyCode: EUR
withTax: 4999
withoutTax: 4201
recommendedRetailPrice:
tax:
vat:
amount: 798
rate: 0.19
appliedReductions: [ ]
customData: { }
- id: 5
referenceKey: external-reference
attributes:
size:
id: 2
key: size
label: Size
type: ''
multiSelect: false
values:
id: 18
label: M
value: m
firstLiveAt: '2023-09-22T14:35:29+00:00'
createdAt: '2023-09-22T14:34:45+00:00'
updatedAt: '2024-04-23T03:17:39+00:00'
stock:
supplierId: 3
warehouseId: 1
quantity: 7
isSellableWithoutStock: false
price:
currencyCode: EUR
withTax: 4999
withoutTax: 4201
recommendedRetailPrice:
tax:
vat:
amount: 798
rate: 0.19
appliedReductions: [ ]
customData: { }
customData: { }
'400':
description: required query parameter missing / invalid
'401':
description: authentication failed
x-codeSamples:
- lang: 'bash'
label: 'CLI'
source: |
curl --location 'https://{{tenant-space}}.storefront.api.scayle.cloud/v1/products?shopId={{shopId}}'
- lang: 'ts'
label: 'Typescript'
source: |
const response = await client.products.query({});
console.log(response.entities)
/v1/products/{productId}:
get:
tags:
- products
summary: Get a product
description: Get one product by productId.
operationId: fetch-product-by-id
parameters:
- name: productId
in: path
description: Get product with specified `productId`.
required: true
explode: false
schema:
type: integer
- $ref: '#/components/parameters/campaignKey'
- $ref: '#/components/parameters/productsWith'
- $ref: '#/components/parameters/pricePromotionKey'
responses:
'200':
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/Product'
example:
id: 7
isActive: true
isSoldOut: false
isNew: false
createdAt: '2023-09-22T14:34:44+00:00'
updatedAt: '2024-04-10T10:30:08+00:00'
indexedAt: '2024-04-23T17:22:14+00:00'
firstLiveAt: '2023-09-22T14:35:29+00:00'
masterKey: master-key
referenceKey: external-reference
attributes:
name:
id: 20005
key: name
label: Name
type: ''
multiSelect: false
values:
id: 20005
label: Women dress
value: name
color:
id: 1
key: color
label: Color
type: ''
multiSelect: true
values:
- id: 38932
label: Black
value: black
brand:
id: 3
key: brand
label: Brand
type: ''
multiSelect: false
values:
id: 232
label: SCAYLE
value: scayle
advancedAttributes:
combineWith:
id: 1223
key: combineWith
label: Combine with Products
type: ''
values:
- fieldSet:
- - value: '51'
- value: '63'
- value: '27'
groupSet: [ ]
images:
- hash: images/52d08cac15a71b5c02428c7989f634b9
attributes:
imageFocus:
id: 1253
key: imageFocus
label: Image Focus
type: ''
multiSelect: false
values:
id: 66484
label: Product
value: product
- hash: images/3e81768c43aab1d12b3c53956a64ff2d.jpg
attributes:
imageFocus:
id: 1253
key: imageFocus
label: Image Focus
type: ''
multiSelect: false
values:
id: 66483
label: Detail
value: detail
variants:
- id: 1
referenceKey: external-reference
attributes:
size:
id: 2
key: size
label: Size
type: ''
multiSelect: false
values:
id: 15
label: S
value: s
firstLiveAt: '2023-09-22T14:36:42+00:00'
createdAt: '2023-09-22T14:34:45+00:00'
updatedAt: '2024-04-23T09:32:13+00:00'
stock:
supplierId: 3
warehouseId: 1
quantity: 21
isSellableWithoutStock: false
price:
currencyCode: EUR
withTax: 4999
withoutTax: 4201
recommendedRetailPrice:
tax:
vat:
amount: 798
rate: 0.19
appliedReductions: [ ]
customData: { }
- id: 5
referenceKey: external-reference
attributes:
size:
id: 2
key: size
label: Size
type: ''
multiSelect: false
values:
id: 18