-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdb.json
1236 lines (1236 loc) · 42.8 KB
/
db.json
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
{
"announcements": [
{
"id": 1121,
"platform": "shopee",
"title": "[Important] Update Local SIP Affiliate Shop Access Permission",
"url": "https://open.shopee.com/announcements/1121",
"createdAt": 1743678256
},
{
"id": "67ecb3ce8ceb0d04a3723b82",
"platform": "tiktok",
"title": "Streamlining of invite-only product categories",
"url": "https://partner.tiktokshop.com/docv2/page/67ecb3ce8ceb0d04a3723b82",
"createdAt": 1743565789
},
{
"id": "67eb5e81684be504c20ce560",
"platform": "tiktok",
"title": "JP market: Updated APIs for Products, Orders, Logistics, and Customer service",
"url": "https://partner.tiktokshop.com/docv2/page/67eb5e81684be504c20ce560",
"createdAt": 1743478424
},
{
"id": 121834,
"platform": "lazada",
"title": "Reverse API - Only refund order inquiries, actions and SLA field updates",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121834",
"createdAt": 1743407542
},
{
"id": 1115,
"platform": "shopee",
"title": "[Important] Support Local Sellers’ Cross Border Direct Selling Mode",
"url": "https://open.shopee.com/announcements/1115",
"createdAt": 1743047683
},
{
"id": 121830,
"platform": "lazada",
"title": "Category Tree Changes",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121830",
"createdAt": 1742976292
},
{
"id": 1111,
"platform": "shopee",
"title": "Significant OpenAPI Updates for Pickup Service Improvement",
"url": "https://open.shopee.com/announcements/1111",
"createdAt": 1742804010
},
{
"id": 1109,
"platform": "shopee",
"title": "Important OpenAPI Update",
"url": "https://open.shopee.com/announcements/1109",
"createdAt": 1742529952
},
{
"id": 1102,
"platform": "shopee",
"title": "[MY] Important Update for Open Platform AWB API - Shopee Express (East Malaysia)",
"url": "https://open.shopee.com/announcements/1102",
"createdAt": 1742364345
},
{
"id": 1100,
"platform": "shopee",
"title": "[Atualização API] Obrigatoriedade de dimensões",
"url": "https://open.shopee.com/announcements/1100",
"createdAt": 1742216047
},
{
"id": 1098,
"platform": "shopee",
"title": "Important OpenAPI Update",
"url": "https://open.shopee.com/announcements/1098",
"createdAt": 1741951766
},
{
"id": 1097,
"platform": "shopee",
"title": "[Important] Support 3PF Multi-warehouse Mode",
"url": "https://open.shopee.com/announcements/1097",
"createdAt": 1741946355
},
{
"id": 1095,
"platform": "shopee",
"title": "Falha no fluxo de envio de Nota Fiscal",
"url": "https://open.shopee.com/announcements/1095",
"createdAt": 1741615092
},
{
"id": 1094,
"platform": "shopee",
"title": "[Importante] \"pre_order\" ativo para o canal 90021 (Logística Própria)",
"url": "https://open.shopee.com/announcements/1094",
"createdAt": 1741348291
},
{
"id": "67ca5b6c49162f049f2d1fa6",
"platform": "tiktok",
"title": "BR Market: Updated API workflow to support Order, Invoice and Warehouse",
"url": "https://partner.tiktokshop.com/docv2/page/67ca5b6c49162f049f2d1fa6",
"createdAt": 1741314967
},
{
"id": "67ca5b69c925e304ad101829",
"platform": "tiktok",
"title": "Upload Product Image and Upload Product File support more file formats",
"url": "https://partner.tiktokshop.com/docv2/page/67ca5b69c925e304ad101829",
"createdAt": 1741314965
},
{
"id": "67ca5b6649162f049f2d1f8f",
"platform": "tiktok",
"title": "Mandatory certifications for certain categories added",
"url": "https://partner.tiktokshop.com/docv2/page/67ca5b6649162f049f2d1f8f",
"createdAt": 1741314965
},
{
"id": "67ca5b63fc1c0704c4484a75",
"platform": "tiktok",
"title": "Adding co-founded shipping discount fields",
"url": "https://partner.tiktokshop.com/docv2/page/67ca5b63fc1c0704c4484a75",
"createdAt": 1741314961
},
{
"id": "67c8ed30d5d9d004a2f5cd73",
"platform": "tiktok",
"title": "Hazmat Deadline Extended to April 15",
"url": "https://partner.tiktokshop.com/docv2/page/67c8ed30d5d9d004a2f5cd73",
"createdAt": 1741221198
},
{
"id": "67c8ed2e2b63a404b7ad64ce",
"platform": "tiktok",
"title": "Auto Combine Order ID available in Order Details for LIVE sessions",
"url": "https://partner.tiktokshop.com/docv2/page/67c8ed2e2b63a404b7ad64ce",
"createdAt": 1741221195
},
{
"id": 121824,
"platform": "lazada",
"title": "LAZADA Bday Campaign Downgrade Plan",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121824",
"createdAt": 1741141369
},
{
"id": 121823,
"platform": "lazada",
"title": "Choice API - PO Query API and webhook adjustment",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121823",
"createdAt": 1741068118
},
{
"id": 1090,
"platform": "shopee",
"title": "Significant OpenAPI Updates for Mass Shipment and Shop Performance&Penalty",
"url": "https://open.shopee.com/announcements/1090",
"createdAt": 1740743788
},
{
"id": 1089,
"platform": "shopee",
"title": "Open Platform Support Push Mechanism Partner Key",
"url": "https://open.shopee.com/announcements/1089",
"createdAt": 1740743396
},
{
"id": 121822,
"platform": "lazada",
"title": "Category Tree Changes",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121822",
"createdAt": 1740712903
},
{
"id": "67c1198b99a7510498374eeb",
"platform": "tiktok",
"title": "Create Product API now supports an idempotency key",
"url": "https://partner.tiktokshop.com/docv2/page/67c1198b99a7510498374eeb",
"createdAt": 1740708254
},
{
"id": "67c10ad401a7ee04b4d35835",
"platform": "tiktok",
"title": "Create Product API now supports an idempotency key",
"url": "https://partner.tiktokshop.com/docv2/page/67c10ad401a7ee04b4d35835",
"createdAt": 1740704485
},
{
"id": "67bfff18ea14ae049dec966f",
"platform": "tiktok",
"title": "Create Product API now supports an idempotency key",
"url": "https://partner.tiktokshop.com/docv2/page/67bfff18ea14ae049dec966f",
"createdAt": 1740635943
},
{
"id": 1086,
"platform": "shopee",
"title": "[Atualização API] Invoices de Exportação",
"url": "https://open.shopee.com/announcements/1086",
"createdAt": 1740433712
},
{
"id": 1083,
"platform": "shopee",
"title": "[Importante] Atualização API de Cotação - Logística do Vendedor",
"url": "https://open.shopee.com/announcements/1083",
"createdAt": 1740049229
},
{
"id": "67b540942cff3804b29aa359",
"platform": "tiktok",
"title": "Product API now supports two prices",
"url": "https://partner.tiktokshop.com/docv2/page/67b540942cff3804b29aa359",
"createdAt": 1739931816
},
{
"id": "67b4f5e7c422a204a9fc85ea",
"platform": "tiktok",
"title": "Product API now supports two prices",
"url": "https://partner.tiktokshop.com/docv2/page/67b4f5e7c422a204a9fc85ea",
"createdAt": 1739912698
},
{
"id": 1080,
"platform": "shopee",
"title": "OpenAPI Updates for Escrow API and FBS Model Edit",
"url": "https://open.shopee.com/announcements/1080",
"createdAt": 1739777500
},
{
"id": "67b07846219ddf04aedffb33",
"platform": "tiktok",
"title": "MX market: Minimum product price adjustment",
"url": "https://partner.tiktokshop.com/docv2/page/67b07846219ddf04aedffb33",
"createdAt": 1739618398
},
{
"id": "67afc3d1572c9f04b7a533ce",
"platform": "tiktok",
"title": "MX market: Minimum product price adjustment",
"url": "https://partner.tiktokshop.com/docv2/page/67afc3d1572c9f04b7a533ce",
"createdAt": 1739572202
},
{
"id": 1079,
"platform": "shopee",
"title": "[MY] Important Update for Self Collection Point (SPX Express)",
"url": "https://open.shopee.com/announcements/1079",
"createdAt": 1739524526
},
{
"id": 1074,
"platform": "shopee",
"title": "Announcement on Shopee Service Restoration",
"url": "https://open.shopee.com/announcements/1074",
"createdAt": 1739238837
},
{
"id": 1073,
"platform": "shopee",
"title": "[ALL] Announcement on Shopee Service Issues",
"url": "https://open.shopee.com/announcements/1073",
"createdAt": 1739181352
},
{
"id": "67a4205d9c908d0304dd8b22",
"platform": "tiktok",
"title": "New affiliate messaging APIs",
"url": "https://partner.tiktokshop.com/docv2/page/67a4205d9c908d0304dd8b22",
"createdAt": 1738809461
},
{
"id": "67a3b52892b0f40314387270",
"platform": "tiktok",
"title": "New affiliate messaging APIs",
"url": "https://partner.tiktokshop.com/docv2/page/67a3b52892b0f40314387270",
"createdAt": 1738782009
},
{
"id": "6790551c38b3f103169c3ce8",
"platform": "tiktok",
"title": "New Endpoint: Diagnose and Optimize Product",
"url": "https://partner.tiktokshop.com/docv2/page/6790551c38b3f103169c3ce8",
"createdAt": 1737512261
},
{
"id": "6790551a84178a030d74ed37",
"platform": "tiktok",
"title": "Price and Inventory is optional when editing products",
"url": "https://partner.tiktokshop.com/docv2/page/6790551a84178a030d74ed37",
"createdAt": 1737512261
},
{
"id": 1066,
"platform": "shopee",
"title": "[MY] Important Update for Open Platform AWB API - Shopee Express (Sea Shipping)",
"url": "https://open.shopee.com/announcements/1066",
"createdAt": 1736931187
},
{
"id": 1063,
"platform": "shopee",
"title": "Significant OpenAPI Updates",
"url": "https://open.shopee.com/announcements/1063",
"createdAt": 1736782552
},
{
"id": 1065,
"platform": "shopee",
"title": "[Important] [PH] New J&T Cargo Logistic Channel",
"url": "https://open.shopee.com/announcements/1065",
"createdAt": 1736764230
},
{
"id": "6782326ec399d90301e139df",
"platform": "tiktok",
"title": "Product Audit Status is Added to Products API",
"url": "https://partner.tiktokshop.com/docv2/page/6782326ec399d90301e139df",
"createdAt": 1736585854
},
{
"id": 1064,
"platform": "shopee",
"title": "[Important] Shopee launched the Advance Fulfillment Program",
"url": "https://open.shopee.com/announcements/1064",
"createdAt": 1736510128
},
{
"id": "677ccdc6e5dadc0306a56b59",
"platform": "tiktok",
"title": "New version (v202501) for Statement Transactions and Order Statement Transactions",
"url": "https://partner.tiktokshop.com/docv2/page/677ccdc6e5dadc0306a56b59",
"createdAt": 1736232421
},
{
"id": "6778053bb482920307e10979",
"platform": "tiktok",
"title": "US&UK Markets: Hazmat Deadline Extention",
"url": "https://partner.tiktokshop.com/docv2/page/6778053bb482920307e10979",
"createdAt": 1735918930
},
{
"id": "677791a439c067030ec3ac23",
"platform": "tiktok",
"title": "US&UK Markets: Hazmat Deadline Extention",
"url": "https://partner.tiktokshop.com/docv2/page/677791a439c067030ec3ac23",
"createdAt": 1735889335
},
{
"id": 1058,
"platform": "shopee",
"title": "Significant OpenAPI Updates",
"url": "https://open.shopee.com/announcements/1058",
"createdAt": 1735643694
},
{
"id": 1052,
"platform": "shopee",
"title": "Important OpenAPI Updates for Payment, Chat and Ads API",
"url": "https://open.shopee.com/announcements/1052",
"createdAt": 1734931131
},
{
"id": 1048,
"platform": "shopee",
"title": "Significant Open API Updates",
"url": "https://open.shopee.com/announcements/1048",
"createdAt": 1734699573
},
{
"id": 1051,
"platform": "shopee",
"title": "[MY] Important Update for SPX Express (Bulky) & Shopee Express (East Malaysia)",
"url": "https://open.shopee.com/announcements/1051",
"createdAt": 1734694833
},
{
"id": 121809,
"platform": "lazada",
"title": "Lazada Open Platform Partial Release API Downgrade Announcement",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121809",
"createdAt": 1734660146
},
{
"id": "675f9886817e9b0311fbbdd4",
"platform": "tiktok",
"title": "When SEA POP sellers add, edit or publish global products by API, some specific categories will be prohibited and restricted directly",
"url": "https://partner.tiktokshop.com/docv2/page/675f9886817e9b0311fbbdd4",
"createdAt": 1734318229
},
{
"id": 1041,
"platform": "shopee",
"title": "1-AWB Update For MY-SG Shopee International Platform (SIP) and Direct Programme",
"url": "https://open.shopee.com/announcements/1041",
"createdAt": 1733897766
},
{
"id": "675910ccc6a443030d96b937",
"platform": "tiktok",
"title": "EU GSPR Commdoc - adding Responsible person, Manufacturer and Safety label information",
"url": "https://partner.tiktokshop.com/docv2/page/675910ccc6a443030d96b937",
"createdAt": 1733890369
},
{
"id": 1039,
"platform": "shopee",
"title": "[PH] Important Update for Customized Air Waybills (AWB)",
"url": "https://open.shopee.com/announcements/1039",
"createdAt": 1733474510
},
{
"id": "6752715b28a1690305f1e7dd",
"platform": "tiktok",
"title": "Updates to Product API Mandatory Certifications",
"url": "https://partner.tiktokshop.com/docv2/page/6752715b28a1690305f1e7dd",
"createdAt": 1733456323
},
{
"id": 121802,
"platform": "lazada",
"title": "A/B tests API is going offline soon",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121802",
"createdAt": 1733126466
},
{
"id": 121801,
"platform": "lazada",
"title": "Product API - Add MP3 Store Product business field",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121801",
"createdAt": 1732779179
},
{
"id": 121800,
"platform": "lazada",
"title": "LAZADA D12 Campaign Downgrade Plan",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121800",
"createdAt": 1732673813
},
{
"id": 1031,
"platform": "shopee",
"title": "Significant OpenAPI Up[date",
"url": "https://open.shopee.com/announcements/1031",
"createdAt": 1732275565
},
{
"id": "6740642f29926a030df796bd",
"platform": "tiktok",
"title": "(MAINTENANCE) Scheduled downtime for Promotion APIs",
"url": "https://partner.tiktokshop.com/docv2/page/6740642f29926a030df796bd",
"createdAt": 1732273225
},
{
"id": "673d539a58db2002f52a44a7",
"platform": "tiktok",
"title": "External Product Attribution for Reviews and Ads",
"url": "https://partner.tiktokshop.com/docv2/page/673d539a58db2002f52a44a7",
"createdAt": 1732072368
},
{
"id": 1026,
"platform": "shopee",
"title": "Update on Chat API Policy: Changes to New Application Submissions",
"url": "https://open.shopee.com/announcements/1026",
"createdAt": 1732019226
},
{
"id": "6736aff0ecc4ab030e0be6fc",
"platform": "tiktok",
"title": "HTML Tags are supported in product descriptions",
"url": "https://partner.tiktokshop.com/docv2/page/6736aff0ecc4ab030e0be6fc",
"createdAt": 1731637260
},
{
"id": 1024,
"platform": "shopee",
"title": "[SG] Important Update for Shipping Carrier Airway Bill & Customized Airway Bill",
"url": "https://open.shopee.com/announcements/1024",
"createdAt": 1731468637
},
{
"id": 1023,
"platform": "shopee",
"title": "Penalties for Security Vulnerabilities Detected in OpenAPI Connection",
"url": "https://open.shopee.com/announcements/1023",
"createdAt": 1731382044
},
{
"id": 1017,
"platform": "shopee",
"title": "Significant OpenAPI Updates",
"url": "https://open.shopee.com/announcements/1017",
"createdAt": 1730803987
},
{
"id": 1016,
"platform": "shopee",
"title": "[MY] Important Update for Open Platform AWB API - Next Day Delivery & GDEX",
"url": "https://open.shopee.com/announcements/1016",
"createdAt": 1730287059
},
{
"id": "67205233d99b7d02fd10cd24",
"platform": "tiktok",
"title": "US market: AAdding mandatory certificates for Bikes, Scooters and Appliances",
"url": "https://partner.tiktokshop.com/docv2/page/67205233d99b7d02fd10cd24",
"createdAt": 1730171460
},
{
"id": 1010,
"platform": "shopee",
"title": "Significant OpenAPI Updates",
"url": "https://open.shopee.com/announcements/1010",
"createdAt": 1729852038
},
{
"id": 1009,
"platform": "shopee",
"title": "[MY] Important Update for MY-SG SIP and Direct Programme AWB API",
"url": "https://open.shopee.com/announcements/1009",
"createdAt": 1729852123
},
{
"id": 121792,
"platform": "lazada",
"title": " Woman Clothing category, size chart related are mandatory",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121792",
"createdAt": 1729667863
},
{
"id": 1004,
"platform": "shopee",
"title": " Reminder to Complete Survey on \"error_auth\" Breakdown and Integration Time",
"url": "https://open.shopee.com/announcements/1004",
"createdAt": 1729594544
},
{
"id": 121790,
"platform": "lazada",
"title": "LAZADA D11 Campaign Downgrade Plan",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121790",
"createdAt": 1729577318
},
{
"id": 1003,
"platform": "shopee",
"title": "Significant OpenAPI Updates",
"url": "https://open.shopee.com/announcements/1003",
"createdAt": 1729252724
},
{
"id": 999,
"platform": "shopee",
"title": "[MY] Important Update for MY-SG SIP and Direct Programme AWB API",
"url": "https://open.shopee.com/announcements/999",
"createdAt": 1729230547
},
{
"id": 1001,
"platform": "shopee",
"title": "[MY] Important Update for Shipping Carrier Airway Bill (Poslaju)",
"url": "https://open.shopee.com/announcements/1001",
"createdAt": 1729224252
},
{
"id": "670e2527889b3d031da5d253",
"platform": "tiktok",
"title": "EU market: Adding mandatory certificates to Products API",
"url": "https://partner.tiktokshop.com/docv2/page/670e2527889b3d031da5d253",
"createdAt": 1728980274
},
{
"id": 121781,
"platform": "lazada",
"title": "【lazada Choice】PO fulfillment API adjustments",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121781",
"createdAt": 1728640202
},
{
"id": 991,
"platform": "shopee",
"title": "[CB] Important Update for Open Platform AWB API-18079-Shopee Collection Point",
"url": "https://open.shopee.com/announcements/991",
"createdAt": 1728631468
},
{
"id": 989,
"platform": "shopee",
"title": "[Important][PH] Update for customized Air Waybills (AWB) for channel id: 40066 ",
"url": "https://open.shopee.com/announcements/989",
"createdAt": 1728618242
},
{
"id": 988,
"platform": "shopee",
"title": "[Important] [Action Required] Token Storage Type Adjustment Progress Check",
"url": "https://open.shopee.com/announcements/988",
"createdAt": 1728554702
},
{
"id": 121780,
"platform": "lazada",
"title": "Order API - GetOrders API Query Old Orders feature is restored",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121780",
"createdAt": 1728527521
},
{
"id": "66ff107cf0dd0902fa4ab54c",
"platform": "tiktok",
"title": "US market: Strike Through Pricing for allowlisted sellers",
"url": "https://partner.tiktokshop.com/docv2/page/66ff107cf0dd0902fa4ab54c",
"createdAt": 1727991947
},
{
"id": 981,
"platform": "shopee",
"title": "[MY] Important Update for New Logistics Channel (City-Link Express)",
"url": "https://open.shopee.com/announcements/981",
"createdAt": 1727955456
},
{
"id": 980,
"platform": "shopee",
"title": "[MY] Important Update for Open Platform AWB API - Shopee Express (East Malaysia)",
"url": "https://open.shopee.com/announcements/980",
"createdAt": 1727953688
},
{
"id": "66fa4e34f70f7203045b9497",
"platform": "tiktok",
"title": "ID market: \"Shop | Tokopedia\" Open API Integration One Pager",
"url": "https://partner.tiktokshop.com/docv2/page/66fa4e34f70f7203045b9497",
"createdAt": 1727680116
},
{
"id": 977,
"platform": "shopee",
"title": "New API Updates for Managing Shop Flash Sales and Product API",
"url": "https://open.shopee.com/announcements/977",
"createdAt": 1727581807
},
{
"id": "66f44ae6ff0b1d02f8ce09f2",
"platform": "tiktok",
"title": "UK market: Adding compliance required fields to Products API",
"url": "https://partner.tiktokshop.com/docv2/page/66f44ae6ff0b1d02f8ce09f2",
"createdAt": 1727286003
},
{
"id": "66f3810b177a6a033b363a84",
"platform": "tiktok",
"title": "US Market: Removing some reject reasons for returns",
"url": "https://partner.tiktokshop.com/docv2/page/66f3810b177a6a033b363a84",
"createdAt": 1727234357
},
{
"id": "66f304521006d602ec0d54a4",
"platform": "tiktok",
"title": "(REMINDER) Legacy API Sunsets on Dec 31, 2024",
"url": "https://partner.tiktokshop.com/docv2/page/66f304521006d602ec0d54a4",
"createdAt": 1727202402
},
{
"id": "66f219b072760c03029a8654",
"platform": "tiktok",
"title": "US market: Introducing Listing Quality Tiers (LQT) for products",
"url": "https://partner.tiktokshop.com/docv2/page/66f219b072760c03029a8654",
"createdAt": 1727142336
},
{
"id": "66f1364a332c7c02ff0459c7",
"platform": "tiktok",
"title": "For the SEA market partner&developer: The parameters \"handover_method\" in API Ship Package and Batch Ship Package will be useless",
"url": "https://partner.tiktokshop.com/docv2/page/66f1364a332c7c02ff0459c7",
"createdAt": 1727084117
},
{
"id": 970,
"platform": "shopee",
"title": "Significant Chat OpenAPI and Webchat Push Updates",
"url": "https://open.shopee.com/announcements/970",
"createdAt": 1726830214
},
{
"id": 121771,
"platform": "lazada",
"title": "searchAdgroupList API adds date check",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121771",
"createdAt": 1726122013
},
{
"id": 121769,
"platform": "lazada",
"title": "GetOrder/GetOrders API temporary fix coming soon",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121769",
"createdAt": 1726039638
},
{
"id": 121768,
"platform": "lazada",
"title": "Temporary solution for Order api to query new orders",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121768",
"createdAt": 1726018987
},
{
"id": "66e0e14b0d161503013ca73f",
"platform": "tiktok",
"title": "US Market: Adding shipping fee items to Finance API",
"url": "https://partner.tiktokshop.com/docv2/page/66e0e14b0d161503013ca73f",
"createdAt": 1726013790
},
{
"id": "66df5a6a6ad64c02fa1a9550",
"platform": "tiktok",
"title": "UK Market: Mandatory hazmat attributes added",
"url": "https://partner.tiktokshop.com/docv2/page/66df5a6a6ad64c02fa1a9550",
"createdAt": 1725913718
},
{
"id": 967,
"platform": "shopee",
"title": "[MY] Important Update for Open Platform AWB API - 2-Day Delivery",
"url": "https://open.shopee.com/announcements/967",
"createdAt": 1725015853
},
{
"id": 963,
"platform": "shopee",
"title": "[CB] Important Update for Open Platform AWB API-18080 - 5 day delivery (SPX)",
"url": "https://open.shopee.com/announcements/963",
"createdAt": 1724408475
},
{
"id": 957,
"platform": "shopee",
"title": "[Important][PH] SPX Weekend Label and RTS Zone ID Display on AWBs",
"url": "https://open.shopee.com/announcements/957",
"createdAt": 1724151356
},
{
"id": 956,
"platform": "shopee",
"title": "Significant OpenAPI Updates",
"url": "https://open.shopee.com/announcements/956",
"createdAt": 1724060820
},
{
"id": 952,
"platform": "shopee",
"title": "[Important] Token Character Length Update & Open API and Push Mechanism Sunset",
"url": "https://open.shopee.com/announcements/952",
"createdAt": 1723192624
},
{
"id": 947,
"platform": "shopee",
"title": "Significant OpenAPI Updates",
"url": "https://open.shopee.com/announcements/947",
"createdAt": 1722596322
},
{
"id": 946,
"platform": "shopee",
"title": "Significant OpenAPI Updates",
"url": "https://open.shopee.com/announcements/946",
"createdAt": 1721991339
},
{
"id": 938,
"platform": "shopee",
"title": "The Consignment Service OpenAPI is Opened Now",
"url": "https://open.shopee.com/announcements/938",
"createdAt": 1721981732
},
{
"id": 937,
"platform": "shopee",
"title": "[MY] Important Update for Shipping Carrier Airway Bill (Poslaju)",
"url": "https://open.shopee.com/announcements/937",
"createdAt": 1721629562
},
{
"id": 928,
"platform": "shopee",
"title": "[SG] Sunday Pick-up Application Form (SPX Pick-up only)",
"url": "https://open.shopee.com/announcements/928",
"createdAt": 1719977510
},
{
"id": 121763,
"platform": "lazada",
"title": "IMPORTANT UPDATES ON CATEGORY ATTRIBUTES",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121763",
"createdAt": 1724397781
},
{
"id": 121760,
"platform": "lazada",
"title": "LAZADA D9 Campaign Downgrade Plan",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121760",
"createdAt": 1725521077
},
{
"id": 121756,
"platform": "lazada",
"title": "AI Recommended Image Sequences feature coming soon",
"url": "https://open.lazada.com/apps/announcement/detail?docId=121756",
"createdAt": 1724031717
},
{
"id": 2127,
"platform": "lazada",
"title": "GSP API-CreateGlobalProduct ,Input parameter update",
"url": "https://open.lazada.com/apps/announcement/detail?docId=2127",
"createdAt": 1723439264
},
{
"id": 2117,
"platform": "lazada",
"title": "Notification - Mandatory Category Attributes",
"url": "https://open.lazada.com/apps/announcement/detail?docId=2117",
"createdAt": 1724056214
},
{
"id": 2114,
"platform": "lazada",
"title": "Old order cancellation API is going offline soon",
"url": "https://open.lazada.com/apps/announcement/detail?docId=2114",
"createdAt": 1718852926
},
{
"id": 2113,
"platform": "lazada",
"title": "TLS 1.0 is offline",
"url": "https://open.lazada.com/apps/announcement/detail?docId=2113",
"createdAt": 1718342966
},
{
"id": 2104,
"platform": "lazada",
"title": "LAZADA D6 Campaign Downgrade Plan",
"url": "https://open.lazada.com/apps/announcement/detail?docId=2104",
"createdAt": 1716444618
},
{
"id": 2024,
"platform": "lazada",
"title": "Lazada Marketplace Ease Mode Open API release",
"url": "https://open.lazada.com/apps/announcement/detail?docId=2024",
"createdAt": 1725612911
},
{
"id": 1989,
"platform": "lazada",
"title": "【Important】Authorization Upgrade on Lazada Open Platform",
"url": "https://open.lazada.com/apps/announcement/detail?docId=1989",
"createdAt": 1716362954
},
{
"id": "66cbf1e7597571030d9e5fdb",
"platform": "tiktok",
"title": "Sunsetting Listing Schemas Endpoint",
"url": "https://partner.tiktokshop.com/docv2/page/66cbf1e7597571030d9e5fdb",
"createdAt": 1724641778
},
{
"id": "66c5d9b6290e4202f857d5b7",
"platform": "tiktok",
"title": "US and UK markets: New properties added to Finance API",
"url": "https://partner.tiktokshop.com/docv2/page/66c5d9b6290e4202f857d5b7",
"createdAt": 1724242698
},
{
"id": "66c5d9b4e863d902fac36b74",
"platform": "tiktok",
"title": "New Webhook: Product Creation",
"url": "https://partner.tiktokshop.com/docv2/page/66c5d9b4e863d902fac36b74",
"createdAt": 1724242698
},
{
"id": "66b5c41e0d6ef902f1b49220",
"platform": "tiktok",
"title": "For the SEA market: Various categories will require the Mandatory attribute - \"Dangerous Goods\"",
"url": "https://partner.tiktokshop.com/docv2/page/66b5c41e0d6ef902f1b49220",
"createdAt": 1723188334
},
{
"id": "66b58ce40d6ef902f1b3bc27",
"platform": "tiktok",
"title": "For the PH market: Updates to Mandatory attributes on Fresh and Frozen related categories",
"url": "https://partner.tiktokshop.com/docv2/page/66b58ce40d6ef902f1b3bc27",
"createdAt": 1723174205
},
{
"id": "66ad61aab3950e02ff3c345a",
"platform": "tiktok",
"title": "US and UK Markets: Product Category Recommendation",
"url": "https://partner.tiktokshop.com/docv2/page/66ad61aab3950e02ff3c345a",
"createdAt": 1722640364
},
{
"id": "66978e5099c26c02ff76472b",
"platform": "tiktok",
"title": "New APIs and Webhook for Affiliates (Beta)",
"url": "https://partner.tiktokshop.com/docv2/page/66978e5099c26c02ff76472b",
"createdAt": 1722556059
},
{
"id": "66ab20d2d452bf02e7ef8f3b",
"platform": "tiktok",
"title": "Adding SKU and Product limit to Promotion API",
"url": "https://partner.tiktokshop.com/docv2/page/66ab20d2d452bf02e7ef8f3b",
"createdAt": 1722492385
},
{
"id": "66957bc499c26c02ff6c57a9",
"platform": "tiktok",
"title": "US Market: Mandatory hazmat attributes added",
"url": "https://partner.tiktokshop.com/docv2/page/66957bc499c26c02ff6c57a9",
"createdAt": 1721075174
},
{
"id": "66957b8688c8b702f75ff09c",
"platform": "tiktok",
"title": "New Promotion APIs: Gift With Purchase and Free Sample",
"url": "https://partner.tiktokshop.com/docv2/page/66957b8688c8b702f75ff09c",
"createdAt": 1721075167
},
{
"id": "6695695742784f0300c36d38",
"platform": "tiktok",
"title": "For the TH market: Updates to Mandatory Certifications for Certain Product Categories",
"url": "https://partner.tiktokshop.com/docv2/page/6695695742784f0300c36d38",
"createdAt": 1721068024
},
{
"id": "668c6009737c3702ef0269df",
"platform": "tiktok",
"title": "New fields added to Product API for ShopAds",
"url": "https://partner.tiktokshop.com/docv2/page/668c6009737c3702ef0269df",
"createdAt": 1720476946
},
{
"id": "666bb8aa9962ee02c1826afe",
"platform": "tiktok",
"title": "For the TH market: Updates to Mandatory Attributes and Product Certifications for Certain Product Categories",
"url": "https://partner.tiktokshop.com/docv2/page/666bb8aa9962ee02c1826afe",
"createdAt": 1718335716
},
{
"id": "6658fcae39313f02dd4e1b47",
"platform": "tiktok",
"title": "US Market: Product Category Expansion",
"url": "https://partner.tiktokshop.com/docv2/page/6658fcae39313f02dd4e1b47",
"createdAt": 1717192947
},
{
"id": "6658fdefa4dd6c02c335c538",
"platform": "tiktok",
"title": "US and UK Markets: Product Information Quality APIs",
"url": "https://partner.tiktokshop.com/docv2/page/6658fdefa4dd6c02c335c538",
"createdAt": 1717192924
},
{
"id": "661f02b62e1a5d02e267d159",
"platform": "tiktok",
"title": "Authorization Page Updates",
"url": "https://partner.tiktokshop.com/docv2/page/661f02b62e1a5d02e267d159",
"createdAt": 1715273404
},
{
"id": "66329335cb261f02e0b66da9",
"platform": "tiktok",
"title": "For the UK market: Updates to Mandatory Attributes and Product Certifications for Certain Product Categories",
"url": "https://partner.tiktokshop.com/docv2/page/66329335cb261f02e0b66da9",
"createdAt": 1714592060
},
{
"id": "6626f71ad3869d02da297554",
"platform": "tiktok",
"title": "ARD Updates",
"url": "https://partner.tiktokshop.com/docv2/page/6626f71ad3869d02da297554",
"createdAt": 1713829824
},
{
"id": "662153a2bfca1402d27eb5f5",
"platform": "tiktok",
"title": "For SEA market: Upcoming changes on tracking number availability",
"url": "https://partner.tiktokshop.com/docv2/page/662153a2bfca1402d27eb5f5",
"createdAt": 1713460219
},
{
"id": "661d36d77dcc9602c67ecd0a",
"platform": "tiktok",
"title": "Development Shops supports creating accounts for cross-border shops",