-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-data.json
More file actions
1969 lines (1969 loc) · 107 KB
/
api-data.json
File metadata and controls
1969 lines (1969 loc) · 107 KB
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
[
{
"id": "1758859588353",
"name": "Get Product Detail",
"nameTw": "取得商品詳情",
"description": "The Get Product Details API allows users to retrieve detailed product information by specifying input parameters to query specific product fields.Core Features:Input Range: Supports querying up to 100 SKU at a time, enabling flexible and bulk product data retrieval for efficient handling of large-scale product information.Data Integrity: Ensures that the returned product data includes all necessary fields and meets system requirements, reducing errors caused by missing data.",
"version": "v1.0.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/product/hktv/product/details",
"method": "GET",
"category": "Product",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "[ \n { \n \"skuCode\":\"H8888881_S_a1\"\n }\n]",
"description": {
"en": "Get Single Product Detail",
"zh-TW": "單筆取得商品詳情",
"zh-CN": "单笔获取商品详情"
}
},
{
"contentType": "application/json",
"example": "[\n {\n \"skuCode\": \"H8888881_S_a1\"\n },\n {\n \"skuCode\": \"H8888881_S_a2\"\n }\n]",
"description": {
"en": "Get Multiple Product Details",
"zh-TW": "多筆取得商品詳情",
"zh-CN": "批量获取商品详情"
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "Get Single Product Detail",
"zh-TW": "單筆取得商品詳情",
"zh-CN": "单笔获取商品详情"
},
"example": "{\n \"message\": null,\n \"code\": \"success\",\n \"data\": [\n {\n \"status\": \"success\",\n \"skuCode\": \"a1\",\n \"createdBy\": \"user\",\n \"createdDate\": \"user\",\n \"lastUpdatedBy\": \"OpenAPI-H8888881\",\n \"lastUpdatedDate\": \"2025-10-07\",\n \"platformCode\": \"HKTV\",\n \"storefrontStoreCode\": \"H8888881\",\n \"fullSkuCode\": \"H8888881_S_a1\",\n \"productCode\": \"a1\",\n \"skuName\": \"test 1 apple\",\n \"skuNameTchi\": \"test 1 apple\",\n \"skuNameZhCN\": \"test 1 apple\",\n \"primaryCategoryCode\": \"AA83204020001\",\n \"skuSDescEn\": \"123525\",\n \"skuSDescCh\": \"123525\",\n \"skuSDescZhCN\": \"123525\",\n \"skuLDescEn\": \"123525\",\n \"skuLDescCh\": \"123525\",\n \"skuLDescZhCN\": null,\n \"invoiceRemarksEn\": null,\n \"invoiceRemarksCh\": null,\n \"invoiceRemarksZhCN\": null,\n \"videoLink\": null,\n \"videoLinkEn\": null,\n \"videoLinkCh\": null,\n \"videoLinkZhCN\": null,\n \"barcode\": null,\n \"brandCode\": \"HOTTOYS\",\n \"manuCountry\": \"EG\",\n \"weight\": 1,\n \"weightUnit\": \"g\",\n \"packHeight\": 10,\n \"packDepth\": 10,\n \"packLength\": 10,\n \"packDimensionUnit\": \"cm\",\n \"packBoxType\": \"H\",\n \"packSpecEn\": null,\n \"packSpecCh\": null,\n \"packSpecZhCN\": null,\n \"currencyCode\": \"HKD\",\n \"originalPrice\": 274,\n \"sellingPrice\": 0,\n \"mallDollar\": 0,\n \"mallDollarVip\": 0.00,\n \"productReadyMethod\": \"M\",\n \"deliveryMethod\": \"merchant-delivery\",\n \"returnDays\": 0,\n \"productReadyDays\": 12,\n \"pickupDays\": \"MSU\",\n \"pickupTimeslot\": \"AM/PM/EV\",\n \"colorEn\": null,\n \"colorCh\": null,\n \"colorZhCN\": null,\n \"size\": null,\n \"sizeSystem\": null,\n \"invisibleFlag\": \"N\",\n \"colorFamilies\": null,\n \"featureStartTime\": null,\n \"featureEndTime\": null,\n \"voucherType\": null,\n \"voucherDisplayType\": null,\n \"userMax\": null,\n \"redeemStartDate\": null,\n \"urgent\": null,\n \"expiryType\": null,\n \"fixedRedemptionDate\": null,\n \"uponPurchaseDate\": null,\n \"finePrintEn\": \"123525\",\n \"finePrintCh\": \"\",\n \"finePrintZhCN\": \"\",\n \"cost\": null,\n \"removalServices\": null,\n \"field1\": null,\n \"value1\": null,\n \"field2\": null,\n \"value2\": null,\n \"field3\": null,\n \"value3\": null,\n \"discountText\": null,\n \"discountTextTchi\": null,\n \"discountTextZhCN\": null,\n \"style\": null,\n \"goodsType\": null,\n \"warrantyPeriodUnit\": null,\n \"warrantyPeriod\": null,\n \"warrantySupplierEn\": null,\n \"warrantySupplierCh\": null,\n \"warrantySupplierZhCN\": null,\n \"serviceCentreAddressEn\": null,\n \"serviceCentreAddressCh\": null,\n \"serviceCentreAddressZhCN\": null,\n \"serviceCentreEmail\": null,\n \"serviceCentreContact\": null,\n \"warrantyRemarkEn\": null,\n \"warrantyRemarkCh\": null,\n \"warrantyRemarkZhCN\": null,\n \"onOfflineStatus\": \"ONLINE\",\n \"productCategories\": [\n {\n \"productCatCode\": \"AA83204020001\",\n \"name\": \"AA83204020001 - Cat Carrying Bags\",\n \"productCatName\": \"Cat Carrying Bags\"\n }\n ],\n \"imagesMainPhotoList\": [\n {\n \"fileName\": \"123456.jpg\",\n \"filePath\": \"https://cdn-media-test.hkmpcl.com.hk/dev-hktv-mms/HKTV/mms/uploadProductImage/247e/b58d/4398/123456.jpg\",\n \"imageType\": \"main\"\n }\n ],\n \"imagesProductPhotoList\": [\n {\n \"fileName\": \"123456.jpg\",\n \"filePath\": \"https://cdn-media-test.hkmpcl.com.hk/dev-hktv-mms/HKTV/mms/uploadProductImage/fb4c/3f88/7122/123456.jpg\",\n \"imageType\": \"main\"\n }\n ],\n \"imagesOtherPhotoList\": [\n {\n \"fileName\": \"123456.jpg\",\n \"filePath\": \"https://cdn-media-test.hkmpcl.com.hk/dev-hktv-mms/HKTV/mms/uploadProductImage/fb4c/3f88/7122/123456.jpg\",\n \"imageType\": \"main\"\n }\n ],\n \"imagesAdvertisingList\": null,\n \"commissionRate\": 10.00,\n \"brandNameEn\": \"HOTTOYS\",\n \"brandNameTc\": \"HOTTOYS\",\n \"brandNameZhCN\": \"HOTTOYS\",\n \"isPrimarySku\": \"Y\",\n \"storeLandMarkFlag\": \"N\",\n \"partnerInfo\": null,\n \"externalPlatform\": null\n }\n ]\n}"
}
]
},
{
"id": "1758860129507",
"name": "Create Product",
"nameTw": "建立商品",
"description": "The Create Product API enables users to create products, supporting the creation of only one product per request. This API is suitable for basic operations of product addition on the HKTV platform, allowing for fast and accurate product data creation.Core Features:Single Product Creation: Each request supports creating only one product, ensuring operational stability and accuracy.Flexible Configuration: Allows configuration of detailed attributes such as multilingual names, descriptions, prices, brands, and categories to meet diverse product requirements.Multimedia Support: Supports product images, video links, and other multimedia content to enhance product presentation.",
"version": "v1.0.1",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/product/hktv/single/save",
"method": "POST",
"category": "Product",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "{ \n \"skuCode\": \"123456\", \n \"productCode\": \"123456\", \n \"productCategories\": [\n {\n \"productCatCode\": \"AA00000000001\"\n }\n ],\n \"primaryCategoryCode\": \"AA00000000001\",\n \"brandCode\": \"ABC123456\",\n \"productReadyMethod\": \"MLC\",\n \"onOfflineStatus\": \"ONLINE\",\n \"isPrimarySku\": \"N\",\n \"skuName\": \"x\", \n \"skuNameTchi\": \"X\", \n \"skuNameZhCN\": \"x\", \n \"skuSDescEn\": \"X\", \n \"skuSDescCh\": \"X\", \n \"skuSDescZhCN\": \"x\", \n \"skuLDescEn\": \"x\", \n \"skuLDescCh\": \"x\", \n \"skuLDescZhCN\": \"x\", \n \"mainPhoto\": \"x\",\n \"otherProductPhoto\": [\n \"x\",\n \"x\",\n \"x\",\n \"x\"\n ],\n \"otherPhoto\": [\n \"x\",\n \"x\",\n \"x\"\n ],\n \"advertisingPhoto\": \"x\",\n \"manuCountry\": \"ABW\",\n \"currencyCode\": \"RMB\",\n \"originalPrice\": 30,\n \"sellingPrice\": 25,\n \"userMax\": 10,\n \"style\": \"RED\",\n \"discountText\": \"Discount Text\",\n \"discountTextTchi\": \"折扣文字描述\",\n \"discountTextZhCN\": \"折扣文字描述\",\n \"barcode\": \"12456\", \n \"packSpecEn\": \"Packing Spec\",\n \"packSpecCh\": \"包裝規格\",\n \"packSpecZhCN\": \"包装规格\",\n \"packHeight\": 1,\n \"packLength\": 2,\n \"packDepth\": 3,\n \"packDimensionUnit\": \"mm\",\n \"weight\": 4,\n \"weightUnit\": \"g\",\n \"packBoxType\": \"H\",\n \"cartonHeight\": 5,\n \"cartonLength\": 6,\n \"cartonWidth\": 7,\n \"invisibleFlag\": \"Y\",\n \"finePrintEn\": \"Fine Print\",\n \"finePrintCh\": \"條款與細則\",\n \"finePrintZhCN\": \"条款与细则\",\n \"invoiceRemarksEn\": \"Invoice Remark\",\n \"invoiceRemarksCh\": \"發票備註\",\n \"invoiceRemarksZhCN\": \"发票备注\",\n \"returnDays\": 7,\n \"productReadyDays\": \"5\",\n \"pickupDays\": \"MSU\",\n \"pickupTimeslot\": \"AM/PM/EV\",\n \"productOverseaDeliveryList\":[ \n \"MO\"\n ],\n \"minimumShelfLife\": 1,\n \"externalPlatform\" :{\n \"source\":[\n \"TMALL\"\n ],\n \"productId\": \"123456\",\n \"skuId\": \"123465\"\n },\n \"colorFamilies\": \"BEIGE\",\n \"colorEn\": \"_Beige(7229)\", // _Beige(4cm). _Beige(7229)\n \"sizeSystem\": \"INTL\",\n \"size\": \"67cm-135cm\", // 67cm-135cm. 53cm-102cm\n \"field1\": \"power\",\n \"value1\": \"p0d00\", // p0d00. p0d25\n \"field2\": \"cyl\",\n \"value2\": \"c-0d75\", // c-0d75. c-1d00\n \"field3\": \"axis\",\n \"value3\": \"a20\",\n \"videoLink\": \"=ZVRuUV8bTrc\",\n \"videoLinkEn\": \"Video Text 1\",\n \"videoLinkCh\": \"影片文本 1\",\n \"videoLinkZhCN\": \"视频文字 1\",\n \"videoLink2\": \"=ZVRuUV8bTrc\",\n \"videoLinkEn2\": \"Video Text 2\",\n \"videoLinkCh2\": \"影片文本 2\",\n \"videoLinkZhCN2\": \"视频文字 2\",\n \"videoLink3\": \"=ZVRuUV8bTrc\",\n \"videoLinkEn3\": \"Video Text 3\",\n \"videoLinkCh3\": \"影片文本 3\",\n \"videoLinkZhCN3\": \"视频文字 3\",\n \"videoLink4\": \"=ZVRuUV8bTrc\",\n \"videoLinkEn4\": \"Video Text 4\",\n \"videoLinkCh4\": \"影片文本 4\",\n \"videoLinkZhCN4\": \"视频文字 4\",\n \"videoLink5\": \"=ZVRuUV8bTrc\",\n \"videoLinkEn5\": \"Video Text 5\",\n \"videoLinkCh5\": \"影片文本 5\",\n \"videoLinkZhCN5\": \"视频文字 5\",\n \"removalServices\": \"Y\",\n \"warranty\": \"Y\",\n \"goodsType\": \"authorized goods\",\n \"warrantyPeriodUnit\": \"Years\",\n \"warrantyPeriod\": 999,\n \"warrantySupplierEn\": \"Warranty Supplier\",\n \"warrantySupplierCh\": \"保養供應商\",\n \"warrantySupplierZhCN\": \"保养供应商\",\n \"serviceCentreAddressEn\": \"Service Centre Address\",\n \"serviceCentreAddressCh\": \"服務中心地址\", \n \"serviceCentreAddressZhCN\": \"服务中心地址\", \n \"serviceCentreEmail\": \"TEST@shaolter.com\",\n \"serviceCentreContact\": \"Service Centre Contact\",\n \"warrantyRemarkEn\": \"Warranty Remark\",\n \"warrantyRemarkCh\": \"保養備註\",\n \"warrantyRemarkZhCN\": \"保养备注\",\n \"warehouse\": \"H8888881-1\"\n}",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "SUCCESS",
"zh-TW": "成功",
"zh-CN": "成功"
},
"example": "{\n \"message\": \"Open API single save successful\",\n \"code\": \"success\",\n \"data\": {\n \"skuCode\": \"single_save_oapi_test\",\n \"status\": \"success\",\n \"message\": null\n }\n}"
},
{
"statusCode": "200",
"description": {
"en": "FAIL",
"zh-TW": "失敗",
"zh-CN": "失败"
},
"example": "{\n \"message\": \"Open API single save failed\",\n \"code\": \"fail\",\n \"data\": {\n \"skuCode\": \"single_save_oapi_test\",\n \"status\": \"fail\",\n \"message\": [\n \"errorMessage1\",\n \"errorMessage2\"\n ]\n }\n}"
},
{
"statusCode": "200",
"description": {
"en": "The entire request failed. Please check the results and avoid making duplicate API calls.",
"zh-TW": "整批請求失敗,請檢查結果並避免重複呼叫 API。",
"zh-CN": "整批请求失败,请检查结果并避免重复调用 API。"
},
"example": "{\n \"status\": -1,\n \"data\": null,\n \"errorMessageList\": [\"Do not repeat the same action: The request has already been successfully submitted and is currently being processed. Please wait for the process to complete.\"],\n \"fail\": true,\n \"success\": false\n}"
}
]
},
{
"id": "1758854833453",
"name": "Batch Edit Product - All Field",
"nameTw": "批量編輯商品 - 所有欄位",
"description": "The Batch Edit Product - All Field allows users to update product information in bulk, supporting modifications for up to 100 products per request. This API is ideal for efficiently managing large-scale product updates on the HKTV platform, ensuring flexibility and accuracy.Core Features:Bulk Product Updates: Each request supports updating up to 100 products, optimizing operational efficiency for large-scale product management.Selective Field Updates:Fields can be left blank to retain original values.Omitted fields or fields with a null value will remain unchanged.To remove specific data, provide an empty string (\"\") or an empty array ([]).Flexible Configuration: Update multilingual names, descriptions, prices, brands, categories, and other attributes to meet diverse business requirements.Error Handling: Built-in mechanisms validate requests and provide clear feedback for errors, ensuring accurate updates.After submission, the update is asynchronous, and the result must be checked using the Check Product Record API.",
"version": "v1.0.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/product/hktv/batch/editAll",
"method": "POST",
"category": "Product",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "Content-Type",
"example": "[\n {\n \"skuCode\": \"a3\",\n \"productReadyMethod\": \"N\",\n \"productCategories\": [\n {\n \"productCatCode\": \"AA85302000001\"\n },\n {\n \"productCatCode\": \"AA83202540001\"\n }\n ],\n \"primaryCategoryCode\": \"AA83202540001\",\n \"brandCode\": \"A2\",\n \"skuName\": \"2\",\n \"skuNameTchi\": \"2\",\n \"skuNameZhCN\": \"2\",\n \"skuSDescEn\": \"2\",\n \"skuSDescCh\": \"2\",\n \"skuSDescZhCN\": \"2\",\n \"skuLDescEn\": \"1\",\n \"skuLDescCh\": \"1\",\n \"skuLDescZhCN\": \"1\",\n \"userMax\": 0,\n \"mainPhoto\": \"string\",\n \"otherProductPhoto\": [\n \"string\"\n ],\n \"otherPhoto\": [\n \"string\"\n ],\n \"advertisingPhoto\": \"string\",\n \"videoLink\": \"=1\",\n \"videoLinkEn\": \"1\",\n \"videoLinkCh\": \"1\",\n \"videoLinkZhCN\": \"1\",\n \"videoLink2\": \"string\",\n \"videoLinkEn2\": \"string\",\n \"videoLinkCh2\": \"string\",\n \"videoLinkZhCN2\": \"string\",\n \"videoLink3\": \"string\",\n \"videoLinkEn3\": \"string\",\n \"videoLinkCh3\": \"string\",\n \"videoLinkZhCN3\": \"string\",\n \"videoLink4\": \"string\",\n \"videoLinkEn4\": \"string\",\n \"videoLinkCh4\": \"string\",\n \"videoLinkZhCN4\": \"string\",\n \"videoLink5\": \"string\",\n \"videoLinkEn5\": \"string\",\n \"videoLinkCh5\": \"string\",\n \"videoLinkZhCN5\": \"string\",\n \"manuCountry\": \"AF\",\n \"colorFamilies\": \"YELLOW\",\n \"colorEn\": \"_yellow-green\",\n \"sizeSystem\": \"INTL\",\n \"size\": \"S\",\n \"currencyCode\": \"HKD\",\n \"originalPrice\": \"1\",\n \"cost\": null,\n \"sellingPrice\": \"1\",\n \"style\": \"RED\",\n \"discountText\": \"1\",\n \"discountTextTchi\": \"1\",\n \"discountTextZhCN\": \"1\",\n \"packSpecEn\": \"1\",\n \"packSpecCh\": \"1\",\n \"packSpecZhCN\": \"1\",\n \"packHeight\": 1,\n \"packLength\": 1,\n \"packDepth\": 1,\n \"packDimensionUnit\": \"cm\",\n \"weight\": 1,\n \"weightUnit\": \"g\",\n \"packBoxType\": \"H\",\n \"invisibleFlag\": \"N\",\n \"barcode\": [ \"123456\", \"456789\", \"789456\"],\n \"featureStartTime\": null,\n \"featureEndTime\": null,\n \"redeemStartDate\": \"2020-01-01\",\n \"fixedRedemptionDate\": \"2020-01-01\",\n \"uponPurchaseDate\": null,\n \"finePrintEn\": \"1\",\n \"finePrintCh\": \"1\",\n \"finePrintZhCN\": \"1\",\n \"removalServices\": \"N\",\n \"warranty\": \"string\",\n \"goodsType\": \"parallel goods\",\n \"warrantyPeriodUnit\": \"Years\",\n \"warrantyPeriod\": 1,\n \"warrantySupplierCh\": \"1\",\n \"warrantySupplierEn\": \"1\",\n \"warrantySupplierZhCN\": \"1\",\n \"serviceCentreAddressEn\": \"1\",\n \"serviceCentreAddressCh\": \"1\",\n \"serviceCentreAddressZhCN\": \"1\",\n \"serviceCentreEmail\": \"1@hktv.com.hk\",\n \"serviceCentreContact\": \"1\",\n \"warrantyRemarkEn\": \"1\",\n \"warrantyRemarkCh\": \"1\",\n \"warrantyRemarkZhCN\": \"1\",\n \"invoiceRemarksEn\": \"1\",\n \"invoiceRemarksCh\": \"1\",\n \"invoiceRemarksZhCN\": \"1\",\n \"returnDays\": 0,\n \"productReadyDays\": \"0\",\n \"pickupDays\": \"MS\",\n \"pickupTimeslot\": \"AM\",\n \"productOverseaDeliveryList\": [\n \"string\"\n ],\n \"minimumShelfLife\": 0,\n \"onOfflineStatus\": \"ONLINE\",\n \"warehouse\":\"H8888881-1\"\n }\n]",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "Success",
"zh-TW": "成功",
"zh-CN": "成功"
},
"example": "{ \n \"message\": \"Open API batch edit successful\", \n \"code\": \"success\", \n \"data\": {\n \"recordId\": 1,\n \"status\": \"success\", \n \"message\": null \n }\n}"
},
{
"statusCode": "200",
"description": {
"en": "This is the response returned when the batch update operation fails. No additional API calls are required to query the result; the failure reason is included in this response.",
"zh-TW": "這是批量更新操作失敗時返回的回應。 不需要額外呼叫 API 查詢結果,失敗原因已包含在此回應中。",
"zh-CN": "这是批量更新操作失败时返回的响应。 不需要额外调用 API 查询结果,失败原因已包含在此响应中。"
},
"example": "{ \n \"message\": \"Open API batch edit failed\", \n \"code\": \"fail\", \n \"data\": {\n \"recordId\": null,\n \"status\": \"fail\", \n \"message\": [\n \"error1\",\"error2\"\n ]\n }\n}"
},
{
"statusCode": "200",
"description": {
"en": "The entire request failed. Please check the results and avoid making duplicate API calls.",
"zh-TW": "整批請求失敗,請檢查結果並避免重複呼叫 API。",
"zh-CN": "整批请求失败,请检查结果并避免重复调用 API。"
},
"example": "{\n \"status\": -1,\n \"data\": null,\n \"errorMessageList\": [\"Do not repeat the same action: The request has already been successfully submitted and is currently being processed. Please wait for the process to complete.\"],\n \"fail\": true,\n \"success\": false\n}"
}
]
},
{
"id": "1758855073947",
"name": "Get Store Information",
"nameTw": "取得店鋪資料",
"description": "The Get Store API is used to retrieve detailed store information, including platform details, store names, merchant details, delivery thresholds, and fees.",
"version": "v1.0.0",
"baseUrl": "https://mms-api.shoalter.com/mmsAdmin",
"endpoint": "/oapi/api/store/details",
"method": "GET",
"category": "Store",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": null,
"responses": [
{
"statusCode": "200",
"description": {
"en": "Success",
"zh-TW": "成功",
"zh-CN": "成功"
},
"example": "{\n \"message\": null,\n \"code\": \"success\",\n \"data\": [\n {\n \"platformCode\": \"HKTV\",\n \"storefrontStoreCode\": \"H8888881\",\n \"storeNameEn\": \"EN\",\n \"storeNameZh\": \"ZH\",\n \"storeNameZh\": \"ZHCN\",\n \"merchantNameEn\": \"hever_m_610\",\n \"merchantNameZh\": \"hever_m_610\",\n \"deliveryThreshold\": 2,\n \"deliveryFee\": 3\n }\n ],\n \"pagination\": {\n \"page\": 1,\n \"pageSize\": 20,\n \"total\": 1\n }\n}"
}
]
},
{
"id": "1758855158210",
"name": "Update Store Information",
"nameTw": "更新商店資訊",
"description": "The Update Store API is used to update store information, including platform details, store names (in multiple languages), merchant delivery thresholds, and delivery fees.",
"version": "v1.0.0",
"baseUrl": "https://mms-api.shoalter.com/mmsAdmin",
"endpoint": "/oapi/api/store",
"method": "POST",
"category": "Store",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "[\n {\n \"platformCode\": \"HKTV\",\n \"storefrontStoreCode\": \"H8888881\",\n \"storeNameEn\": \"EN\",\n \"storeNameZh\": \"ZH\",\n \"storeNameZhCN\": \"ZHCN\",\n \"deliveryThreshold\": 2,\n \"deliveryFee\": 3\n }\n]",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "SUCCESS",
"zh-TW": "成功",
"zh-CN": "成功"
},
"example": "{\n \"message\": null,\n \"code\": \"success\",\n \"data\": [\n {\n \"platformCode\": \"HKTV\",\n \"storefrontStoreCode\": \"H8888881\",\n \"status\": \"success\",\n \"message\": \"H8888881 is updated\"\n }\n ],\n \"pagination\": {\n \"page\": 1,\n \"pageSize\": 20,\n \"total\": 1\n }\n}"
}
]
},
{
"id": "1758855294667",
"name": "Get Stock Detail",
"nameTw": "取得庫存資料",
"description": "The Get Stock Detail API is used to retrieve stock levels and stock status for specific products within a warehouse. The SKU input range for stock levels is 1 to 100.",
"version": "v1.0.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/inventory/stock/details",
"method": "GET",
"category": "Inventory",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "[\n {\n \"warehouseId\": \"H888888101\",\n \"productId\": \"H8888881_S_a3\"\n }\n]",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"contentType": "application/json",
"example": "[\n {\n \"warehouseId\": null,\n \"productId\": \"H8888881_S_a3\"\n }\n]",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"contentType": "application/json",
"example": "[\n {\n \"productId\": \"H8888881_S_a3\"\n }\n]",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"contentType": "application/json",
"example": "[\n {\n \"productId\": \"H8888881_S_a3\"\n },\n {\n \"productId\": \"H8888881_S_a4\"\n }\n]",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "Success",
"zh-TW": "成功",
"zh-CN": "成功"
},
"example": "{\n \"message\": null,\n \"code\": \"success\",\n \"data\": [\n {\n \"productId\": \"H8888881_S_a3\",\n \"instockStatus\": \"\",\n \"availableToSell\": 10,\n \"inProcess\": 0\n }\n ]\n}"
}
]
},
{
"id": "1758860565545",
"name": "Update Stock Level",
"nameTw": "更新庫存資料",
"description": "The Update Stock API is used to update stock levels for specific products in the warehouse. The number of SKUs that can be updated in a single request, which is 1 to 100.",
"version": "v1.0.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/inventory/stock",
"method": "POST",
"category": "Inventory",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "[\n {\n \"productId\": \"H8888881_S_250422Test_0001\",\n \"quantity\": 1,\n \"action\": \"add\"\n }\n]",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"contentType": "application/json",
"example": "[\n {\n \"productId\": \"H8888881_S_250422Test_0001\",\n \"quantity\": 1,\n \"action\": \"add\"\n },\n {\n \"productId\": \"H8888881_S_250422Test_999\",\n \"quantity\": 1,\n \"action\": \"add\"\n }\n]",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "SUCCESS",
"zh-TW": "SUCCESS",
"zh-CN": "SUCCESS"
},
"example": "{\n \"code\": \"SUCCESS\",\n \"response\": {\n \"successList\": [\n {\n \"productId\": \"H8888881_S_250422Test_0001\",\n \"action\": \"ADD\",\n \"qty\": 1\n }\n ],\n \"failList\": [\n {\n \"productId\": \"H8888881_S_250422Test_999\",\n \"action\": \"ADD\",\n \"qty\": 1,\n \"message\": \"Product not found: H8888881_S_250422Test_999. Please check productId in MMS or check productId again.\"\n }\n ]\n }\n}"
}
]
},
{
"id": "1758855554063",
"name": "Get Order",
"nameTw": "查詢訂單",
"description": "The Get Order API allows merchants to search for order numbers based on the customer's order date, warehouse check-in date, or delivery date. Each request should include only one type of date condition. For all three types of dates (Order Date, Pickup Date, and Delivery Date), merchants may enter either a single date or a date range. The system will return results according to the specified conditions.Notes:For each query, the start date and end date must be within 90 days.Get Order API can only retrieve order numbers. If merchants wish to view detailed order information, they must use Get Order Detail.Use cases for Get Order API:Retrieve orders based on the customer's order date, refer to Request Body 1Retrieve orders based on the warehouse check-in date, refer to Request Body 1Retrieve orders based on the customer's requested delivery date, refer to Request Body 1",
"version": "v1.0.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/order/orders",
"method": "GET",
"category": "Order",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "{\n \"orderDateStart\": \"2025-10-01 00:00:00\",\n \"orderDateEnd\": \"2025-10-31 23:59:59\",\n \"pageSize\": 5,\n \"page\": 2\n}",
"description": {
"en": "If a merchant wants to find orders scheduled for delivery to the HKTVmall warehouse on October 1, they should include the following parameters in the request body:",
"zh-TW": "商戶想查詢10/1至10/31的訂單有哪些,便需要在Request body中裡帶入orderDateStart: 2025-10-01 00:00:00 和orderDateEnd: 2025-10-31 23:59:59,即可查詢該時間段內的訂單",
"zh-CN": "商户可根据顾客的下单时间获取订单,使用 orderDate 作为查询条件。 示例: 商户想查询 10 月 1 日至 10 月 31 日的订单,可在请求中带入"
}
},
{
"contentType": "application/json",
"example": "{\n \"pickupDateStart\": \"2025-10-01 00:00:00\",\n \"pickupDateEnd\": \"2025-10-01 23:59:59\",\n \"pageSize\": 5,\n \"page\": 2\n}",
"description": {
"en": "Using the warehouse check-in date as the search condition, merchants can specify a date range, and the system will return the order numbers that match the criteria.",
"zh-TW": "商戶可依據每日入倉的時間取得訂單,即可使用Pickup date來作為查詢條件。 舉例:商戶想查詢,有哪些訂單應在 10/1 派送至 HKTVmall 倉庫,便需要在 Request body 中裡帶入",
"zh-CN": "商户可根据每日入仓时间获取订单,使用 pickupDate 作为查询条件。 示例: 商户想查询哪些订单应在 10 月 1 日派送至 HKTVmall 仓库,可在请求中带入"
}
},
{
"contentType": "application/json",
"example": "{\n \"deliveryDateStart\": \"2025-10-01 00:00:00\",\n \"deliveryDateEnd\": \"2025-10-01 23:59:59\",\n \"pageSize\": 5,\n \"page\": 2\n}",
"description": {
"en": "Using the customer's requested delivery date as the search condition, merchants can specify a date range, and the system will return the order numbers that match the criteria.",
"zh-TW": "使用客戶要求的配送日期作為查詢條件,商家可以指定一個日期範圍,系統會返回符合條件的訂單號碼。",
"zh-CN": "商户可根据顾客指定的到货时间获取订单,使用 deliveryDate 作为查询条件。 示例: 商户想查询哪些订单应在 10 月 1 日至 10 月 31 日派送至顾客指定地点,可在请求中带入"
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "SUCCESS",
"zh-TW": "成功",
"zh-CN": "成功"
},
"example": "{\n \"message\": \"\",\n \"code\": \"success\",\n \"data\": {\n \"subOrderNumbers\": [\n \"H202518121852-H8888881\",\n \"H202518121855-H8888881\",\n \"H202518121859-H8888881\",\n \"H202518121848-H8888881\",\n \"H202518121261-H8888881\"\n ]\n },\n \"pagination\": {\n \"page\": 1,\n \"pageSize\": 5,\n \"total\": 150\n }\n}"
}
]
},
{
"id": "1758855554064",
"name": "Get Order Detail",
"nameTw": "查詢訂單詳情",
"description": "The Get Order Detail API allows merchants to retrieve detailed order information based on subOrderNumbers (sub-order numbers), including product information, waybill number, order date, warehouse check-in date, delivery date, and more. Each request can query up to 300 sub-order numbers at a time.Notes:subOrderNumbers can be obtained from the Get Order API.trackingId refers to the Waybill Number, which may change due to HKTVmall’s warehouse handling process.consignmentCode is the unique identifier for each sub-order. Once created when the waybill is generated, it will never change. Therefore, merchants who need to track shipment progress can use the consignmentCode as the tracking reference.consignmentStatus represents the Waybill Status.recipientName, contactPhoneNumber, and deliveryAddress apply only to merchant delivery.When a customer adds products to the shopping cart, the HKTVmall system generates a transactionId, which applies only to merchants under special contracts.totalPrice equals SKU selling price × selling quantity, and the total amount does not include discounts.mainlandCourierTrackingNumber and mainlandCourierCompanyName apply only to Mainland merchants.",
"version": "v1.1.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/order/details",
"method": "GET",
"category": "Order",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "{\n \"subOrderNumbers\":[\n \"H250212003003-H8888881\"\n ]\n}",
"description": {
"en": "Single search at a Time",
"zh-TW": "一次單個搜索",
"zh-CN": "一次单个搜索"
}
},
{
"contentType": "application/json",
"example": "{\n \"subOrderNumbers\":[\n \"H250108004011-H8888881\",\n \"H250108004034-H8888881\",\n \"H250203002042-H8888881\"\n ]\n}",
"description": {
"en": "Multiple Searches at a Time",
"zh-TW": "一次多個搜索",
"zh-CN": "一次多个搜索"
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "Success",
"zh-TW": "成功",
"zh-CN": "成功"
},
"example": "{\n \"message\": \"success\",\n \"code\": \"success\",\n \"data\": {\n \"successList\": [\n {\n \"consignmentCode\": \"5533727\",\n \"trackingId\": \"4005337275\",\n \"transactionId\": \"15481123719086096-51219011_20251224093027\",\n \"orderDate\": \"2025-12-24 09:30:28.0\",\n \"consignmentStatus\": \"CONFIRMED\",\n \"orderId\": \"H251224001003-H8888881\",\n \"pickUpDate\": \"2098-01-01 11:00:00.0\",\n \"deliveryDate\": \"2098-01-01 14:00:00.0\",\n \"deliveryMethod\": \"merchant-delivery\",\n \"recipientName\": \"hello_customer\",\n \"contactPhoneNumber\": \"22221428\",\n \"deliveryAddress\": \"香港, 半山, 天匯, 側\",\n \"consignmentEntries\": [\n {\n \"skuId\": \"H8888881_S_A002\",\n \"skuNameEn\": \"A002\",\n \"skuNameZh\": \"A002\",\n \"brand\": \"黑橋牌\",\n \"quantity\": \"2\",\n \"totalPrice\": \"700.0\",\n \"pk\": null\n }\n ],\n \"warehouseId\": \"H888888109\",\n \"deliverToWarehouse\": \"青衣 9/F\",\n \"mainlandCourierTrackingNumber\": null,\n \"mainlandCourierCompanyName\": null,\n \"message\": null\n },\n ],\n \"failList\": []\n },\n \"pagination\": {\n \"page\": 1,\n \"pageSize\": 6,\n \"total\": 6\n }\n}"
},
{
"statusCode": "200",
"description": {
"en": "Partial Failure",
"zh-TW": "部分失敗",
"zh-CN": "部分失败"
},
"example": "{\n \"message\": \"Partial failure occurred while retrieving orders.\",\n \"code\": \"fail\",\n \"data\": {\n \"successList\": [\n {\n \"consignmentCode\": \"5454005\",\n \"trackingId\": \"4004540054\",\n \"orderDate\": \"2025-02-03 16:22:06.0\",\n \"consignmentStatus\": \"CONFIRMED\",\n \"orderId\": \"H250203002042-H8888881\",\n \"transactionId\": \"15481123719086096-32071166_20210914101606\",\n \"pickUpDate\": \"2098-01-01 11:00:00.0\",\n \"deliveryDate\": \"2098-01-01 14:00:00.0\",\n \"deliveryMethod\": \"merchant-delivery\",\n \"recipientName\": \"hello_customer \",\n \"contactPhoneNumber\": \"62958451\",\n \"deliveryAddress\": \"香港, 半山, 天匯, 1F\",\n \"consignmentEntries\": [\n {\n \"skuId\": \"H8888881_S_LT-INS-001-Ginseng\",\n \"skuNameEn\": \"Ginseng body insurance\",\n \"skuNameZh\": \"給人參的人參保險\",\n \"brand\": \"富衛保險\",\n \"quantity\": \"2\",\n \"totalPrice\": \"200.0\"\n }\n ],\n \"warehouseId\": \"H888888109\",\n \"deliverToWarehouse\": \"青衣 9/F\",\n \"mainlandCourierTrackingNumber\": null,\n \"mainlandCourierCompanyName\": null,\n \"message\": null\n }\n ],\n \"failList\": [\n {\n \"orderId\": \"H250203002042-H8888881\",\n \"consignmentCode\": \"5454005\"\n },\n {\n \"orderId\": \"H250203002043-H8888881\",\n \"consignmentCode\": \"5454006\"\n }\n ]\n },\n \"pagination\": {\n \"page\": 1,\n \"pageSize\": 1,\n \"total\": 1\n }\n}"
},
{
"statusCode": "400",
"description": {
"en": "Fully Failure",
"zh-TW": "整筆失敗",
"zh-CN": "整笔失败"
},
"example": "{\n \"message\": \"Unable to get results from requests. Try again or contact support.\",\n \"code\": \"fail\",\n \"data\": null,\n \"pagination\": {\n \"page\": null,\n \"pageSize\": null,\n \"total\": null\n }\n}"
}
]
},
{
"id": "1758855701322",
"name": "Update Order Status",
"nameTw": "更新訂單狀態",
"description": "The Update Order Status API allows merchants to update the delivery status of their orders. It supports updating either a single order or multiple orders, with a maximum of 100 orders per request.In the MMS system, the available order status options that merchants can update are as follows:ACKNOWLEDGED: The merchant confirms that the order is ready for shipment. This status is optional and can be used based on the merchant's business needs.PICKED: The merchant has completed product packaging and confirmed that the goods will be sent to the HKTVmall warehouse.RECEIVED_BY_CUSTOMER: The customer has received the goods and completed the acknowledgment process.Notes:If the delivery method is Standard Delivery or Non-Standard Delivery, the order status can be updated to: ACKNOWLEDGED, PICKED.If the delivery method is Merchant Delivery, the order status can be updated to: ACKNOWLEDGED, RECEIVED_BY_CUSTOMER.If the delivery method is Third-Party Logistics (3PL), no status update is required.When an order status is updated to RECEIVED_BY_CUSTOMER, it indicates that the order cycle is complete. The system will automatically change the status to ORDER_COMPLETED after 7 days.If the merchant is unable to ship the order for any reason, the Cancel Order API must be used to cancel the order.",
"version": "v1.0.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/order/updateOrderStatus",
"method": "POST",
"category": "Order",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "[\n {\n \"orderNumber\": \"H141209002005-H8888881\",\n \"trackingId\": \"4001882233\",\n \"status\": \"ACKNOWLEDGED\"\n }\n]",
"description": {
"en": "Update the status of single order",
"zh-TW": "更新單筆訂單狀態",
"zh-CN": "更新单笔订单状态"
}
},
{
"contentType": "application/json",
"example": "[\n {\n \"orderNumber\": \"H141209002005-H8888881\",\n \"trackingId\": \"4001882233\",\n \"status\": \"ACKNOWLEDGED\"\n },\n {\n \"orderNumber\": \"H141209002005-H8888881\",\n \"trackingId\": \"4001882234\",\n \"status\": \"ACKNOWLEDGED\"\n }\n]",
"description": {
"en": "Update the status of multiple orders at once",
"zh-TW": "一次更新多筆訂單狀態",
"zh-CN": "一次更新多笔订单状态"
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "Successfully updated the status of a single order",
"zh-TW": "成功更新單筆訂單狀態",
"zh-CN": "成功更新单笔订单状态"
},
"example": "{\n \"message\": \"success\",\n \"code\": \"success\",\n \"data\": {\n \"successList\": [\n {\n \"orderNumber\": \"H141209002005-H8888881\",\n \"waybillNumber\": \"4001882233\",\n \"successCode\": \"FROM_HYBRIS_SYSTEM\",\n \"status\": \"ACKNOWLEDGED\"\n }\n ],\n \"failList\": []\n },\n \"pagination\": {\n \"page\": null,\n \"pageSize\": null,\n \"total\": null\n }\n}"
},
{
"statusCode": "200",
"description": {
"en": "Successfully updated the status of multiple orders",
"zh-TW": "成功更新多筆訂單狀態",
"zh-CN": "成功更新多笔订单状态"
},
"example": "{\n \"message\": \"success\",\n \"code\": \"success\",\n \"data\": {\n \"successList\": [\n {\n \"orderNumber\": \"H251103001010-H8888881\",\n \"waybillNumber\": \"4005197888\",\n \"successCode\": \"FROM_HYBRIS_SYSTEM\",\n \"status\": \"ACKNOWLEDGED\"\n },\n {\n \"orderNumber\": \"H251105001047-H8888881\",\n \"waybillNumber\": \"4005203676\",\n \"successCode\": \"FROM_HYBRIS_SYSTEM\",\n \"status\": \"ACKNOWLEDGED\"\n }\n ],\n \"failList\": []\n },\n \"pagination\": {\n \"page\": null,\n \"pageSize\": null,\n \"total\": null\n }\n}"
}
]
},
{
"id": "1758855871211",
"name": "Cancel Order",
"nameTw": "取消訂單",
"description": "The Cancel Order API allows merchants to cancel one or multiple orders, supporting batch cancellation. Each request can cancel between 1 and 100 orders.Notes:When a merchant cancels an order, the order status will be updated to Cancelled, and the system will trigger the force out-of-stock mechanism. Inventory adjustments must be made in the stock settings.Once an order is cancelled, it cannot be restored.",
"version": "v1.0.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/order/cancel",
"method": "POST",
"category": "Order",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "[\n {\n \"orderNumber\":\"H250424000078-B1316001\",\n \"trackingId\":\"7144218492\",\n }\n]",
"description": {
"en": "Full Cancellation",
"zh-TW": "整筆取消",
"zh-CN": "整筆取消"
}
},
{
"contentType": "application/json",
"example": "[\n {\n \"orderNumber\":\"H250424000078-B1316001\",\n \"trackingId\":\"7144218492\",\n \"entries\":[\n {\n \"productCode\":\"B1316001_S_StandardDelivery_MtoW_002\",\n \"quantity\": \"1\"\n }\n ]\n }\n]",
"description": {
"en": "Partial Cancellation",
"zh-TW": "部分取消",
"zh-CN": "部分取消"
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "SUCCESS",
"zh-TW": "SUCCESS",
"zh-CN": "SUCCESS"
},
"example": "{\n \"code\": \"SUCCESS\",\n \"response\": {\n \"successList\": [\n {\n \"orderNumber\": \"H250407001003-H9492001\",\n \"waybillNumber\": \"4004688808\",\n \"successCode\": \"FROM_HYBRIS_SYSTEM\",\n \"status\": \"CANCELLED\"\n }\n ],\n \"failList\": []\n }\n}"
}
]
},
{
"id": "1758855987164",
"name": "Split Waybill",
"nameTw": "拆分運單",
"description": "The Split Waybill API allows merchants to split waybills associated with an order.Notes:Splitting is only allowed when the number of items in the order is greater than two.Batch waybill splitting is not supported.Once a waybill is split, it cannot be reverted.",
"version": "v1.0.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/order/splitWaybills",
"method": "POST",
"category": "Order",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "{\n \"waybillNumber\": \"4004704530\",\n \"entries\": [\n {\n \"productCode\": \"H8888881_S_10011014\",\n \"quantity\": 4\n }\n ]\n}",
"description": {
"en": "Single transaction at a time",
"zh-TW": "一次單筆",
"zh-CN": "一次单笔"
}
}
],
"responses": [
{
"statusCode": "200",
"description": {
"en": "SUCCESS",
"zh-TW": "成功",
"zh-CN": "成功"
},
"example": "{\n \"code\": \"SUCCESS\",\n \"response\": {\n \"data\": [\n \"4004704530\", // waybill number\n \"5470453\", // consignmentCode\n \"4004704530-1\", //the waybill number that been split out\n \"5470624\" //the consignmentCode of the waybill that been split out\n ]\n }\n}"
}
]
},
{
"id": "1758856126246",
"name": "Print Waybill ",
"nameTw": "列印運單",
"description": "The Print Waybill API allows merchants to print waybills that have not yet been shipped, with a maximum of 300 waybills per request.Notes:The API response is returned in HTML format, which already complies with HKTVmall's waybill layout requirements. Therefore, merchants need to have their engineers convert the HTML format into a visualized UI for viewing.The waybill supports the following size formats and content options:A5Label (waybill only)Label (with product list)Due to the waybill format settings and the number of products included in a waybill, the document may contain more than one page. Merchants should check their own system's print settings to ensure that no product details are omitted.",
"version": "v1.0.0",
"baseUrl": "https://merchant-oapi.shoalter.com",
"endpoint": "/oapi/api/order/printWaybills/html",
"method": "POST",
"category": "Order",
"status": "active",
"headers": [
{
"name": "Content-Type",
"value": "application/json",
"description": {
"en": "",
"zh-TW": "",
"zh-CN": ""
}
},
{
"name": "x-auth-token",
"value": "{{create it}}"
},
{
"name": "storeCode",
"value": "{{Your Store Code}}",
"description": {
"en": "e.g. H8888881",
"zh-TW": "e.g. H8888881",
"zh-CN": "e.g. H8888881"
}
},
{
"name": "platformCode",
"value": "HKTV"
},
{
"name": "businessType",
"value": "eCommerce"
}
],
"requestBodies": [
{
"contentType": "application/json",
"example": "{\n \"waybill\": \"4004712041\",\n \"suborderNumbers\": \"H250417007024-C0539001\",\n \"paperSize\": \"A5\"\n}",
"description": {
"en": "Single transaction at a time",
"zh-TW": "一次單筆",
"zh-CN": "一次单笔"
}
},
{
"contentType": "application/json",
"example": "{\n \"waybill\": \"4004712041,4004712042\",\n \"suborderNumbers\": \"H250417007024-C0539001,H250417007025-C0539001\",\n \"paperSize\": \"A5\"\n}",
"description": {
"en": "Multiple transactions at a time",
"zh-TW": "一次多筆",
"zh-CN": "一次多笔"
}
}
],
"responses": [