-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmanagement-apis.json
More file actions
17543 lines (17543 loc) · 837 KB
/
management-apis.json
File metadata and controls
17543 lines (17543 loc) · 837 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
{
"openapi": "3.0.0",
"info": {
"title": "Management APIs (Multi-Tenancy)",
"description": "Create and manage apps on-the-fly using our app management APIs",
"version": "1.0"
},
"servers": [
{
"url": "https://apimgmt.cometchat.io"
}
],
"paths": {
"/apps": {
"post": {
"tags": [
"App"
],
"summary": "Create",
"description": "Creates an app in the account. It returns all the app related information.",
"parameters": [
{
"$ref": "#/components/parameters/key"
},
{
"$ref": "#/components/parameters/secret"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"required": [
"name",
"region"
],
"properties": {
"name": {
"description": "name of the app.",
"type": "string"
},
"region": {
"description": "Region of the app",
"type": "string",
"default": "us",
"enum": [
"us",
"eu",
"in"
]
},
"version": {
"description": "version of an app",
"type": "string",
"default": "3"
},
"skipSampleData": {
"description": "skips sample data if it is set true",
"type": "boolean"
}
},
"type": "object"
}
}
}
},
"responses": {
"200": {
"description": "Created App",
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"properties": {
"": {
"$ref": "#/components/schemas/appSchema"
}
},
"type": "object"
}
},
"type": "object"
},
"example": {
"data": {
"id": "<APP_ID>",
"name": "<App Name>",
"plan": "trial",
"trialEndsAt": 1588887393,
"state": "active",
"owner": 1656,
"region": "us",
"createdAt": 1586295393,
"appOwner": {
"id": "1656",
"name": "<OWNER_NAME>",
"email": "youremail@domain.com"
},
"appRegion": {
"id": "us",
"name": "USA",
"description": "The USA region has serverslocated at Ohio."
},
"apiKeys": {
"<API_KEY1>": {
"apiKey": "<API_KEY1>",
"name": "Rest API Key",
"scope": "fullAccess",
"createdBy": "app_system"
},
"<API_KEY2>": {
"apiKey": "<API_KEY2>",
"name": "Auth Key",
"scope": "authOnly",
"createdBy": "app_system"
}
}
}
}
}
}
}
}
},
"get": {
"tags": [
"App"
],
"summary": "List",
"description": "Lists all the apps for an account.",
"parameters": [
{
"$ref": "#/components/parameters/key"
},
{
"$ref": "#/components/parameters/secret"
},
{
"name": "searchKey",
"in": "query",
"description": "The \"searchKey\" query parameter allows filtering results based on either the ID or name properties of the apps.",
"schema": {
"type": "string"
}
},
{
"name": "perPage",
"in": "query",
"description": "The \"perPage\" property specifies the total number of records to be fetched in a single request. It determines the maximum number of items returned per page.",
"schema": {
"type": "integer"
}
},
{
"name": "page",
"in": "query",
"description": "The \"page\" property is utilized for navigating through the available pages of results. It indicates the specific page of results that is being retrieved or accessed.",
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"description": "List Apps",
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"type": "array",
"items": {
"properties": {
"": {
"$ref": "#/components/schemas/appSchema"
}
},
"type": "object"
}
},
"meta": {
"properties": {
"": {
"$ref": "#/components/schemas/metaSchema"
}
},
"type": "object"
}
},
"type": "object"
},
"example": {
"data": {
"id": "<APP_ID>",
"name": "<App Name>",
"plan": "trial",
"trialEndsAt": 1588887393,
"state": "active",
"owner": 1656,
"region": "us",
"createdAt": 1586295393,
"appOwner": {
"id": "1656",
"name": "<OWNER_NAME>",
"email": "youremail@domain.com"
},
"appRegion": {
"id": "us",
"name": "USA",
"description": "The USA region has serverslocated at Ohio."
},
"accessKey": "<API_KEY>",
"apiKeys": {
"<API_KEY1>": {
"apiKey": "<API_KEY1>",
"name": "Rest API Key",
"scope": "fullAccess",
"createdBy": "app_system"
},
"<API_KEY2>": {
"apiKey": "<API_KEY2>",
"name": "Auth Key",
"scope": "authOnly",
"createdBy": "app_system"
}
}
}
}
}
}
}
}
}
},
"/apps/{appId}": {
"delete": {
"tags": [
"App"
],
"summary": "Delete",
"description": "Schedule a specific app for deletion.",
"parameters": [
{
"$ref": "#/components/parameters/key"
},
{
"$ref": "#/components/parameters/secret"
},
{
"$ref": "#/components/parameters/appId"
}
],
"responses": {
"200": {
"description": "List Apps",
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"properties": {
"": {
"$ref": "#/components/schemas/deleteSchema"
}
},
"type": "object"
}
},
"type": "object"
},
"example": {
"data": {
"success": true,
"scheduledToDeleteAt": 1631203178
}
}
}
}
}
}
}
},
"/apps/{appId}/usage": {
"post": {
"tags": [
"App"
],
"summary": "Fetch usage",
"description": "Retrieves usage data for multi-tenant apps.",
"operationId": "fetch-multi-tenant-usage",
"parameters": [
{
"$ref": "#/components/parameters/key"
},
{
"$ref": "#/components/parameters/secret"
},
{
"name": "appId",
"in": "path",
"description": "The parent appId to which the subscription is linked.",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"properties": {
"usePreviousBillingCycle": {
"description": "Indicates whether the usage from the previous billing cycle should be retrieved.\n\nIf set to false, the usage for the current cycle will be fetched.\n\nIf set to true, the usage from the previous cycle will be fetched.",
"type": "boolean"
}
},
"type": "object"
}
}
}
},
"responses": {
"200": {
"description": "Updated App",
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"properties": {
"": {
"$ref": "#/components/schemas/appSchema"
}
},
"type": "object"
}
},
"type": "object"
},
"example": {
"data": {
"success": true,
"message": "Your usage request has been accepted and is being processed for . You will receive an email with the details at <emailID>@example.com"
}
}
}
}
}
}
}
},
"/apps/{appId}/extensions": {
"post": {
"tags": [
"Extensions"
],
"summary": "Enable/Disable",
"description": "Enables or disables the extension for an app.",
"parameters": [
{
"$ref": "#/components/parameters/key"
},
{
"$ref": "#/components/parameters/secret"
},
{
"$ref": "#/components/parameters/appId"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"properties": {
"enabled": {
"description": "Array of extension IDs that has to be enabled.",
"type": "array",
"items": {
"type": "string"
}
},
"disabled": {
"description": "Array of extension IDs that has to be disabled.",
"type": "array",
"items": {
"type": "string"
}
}
},
"type": "object"
}
}
}
},
"responses": {
"200": {
"description": "Enabled/Disabled Extension",
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"properties": {
"": {
"$ref": "#/components/schemas/extensionSchema"
}
},
"type": "object"
}
},
"type": "object"
},
"example": {
"data": {
"enabled": {
"extention_id1": {
"success": true,
"message": "The extension extension_id1 has been enabled successfully."
},
"extention_id2": {
"success": true,
"message": "The extension extension_id2 has been enabled successfully."
}
},
"disabled": {
"extention_id3": {
"success": true,
"message": "The extension extension_id1 has been enabled successfully."
}
}
}
}
}
}
}
}
},
"get": {
"tags": [
"Extensions"
],
"summary": "List Extensions",
"description": "List the Extensions.",
"parameters": [
{
"$ref": "#/components/parameters/key"
},
{
"$ref": "#/components/parameters/secret"
},
{
"$ref": "#/components/parameters/appId"
},
{
"$ref": "#/components/parameters/perPage--extensions"
}
],
"responses": {
"200": {
"description": "Enabled/Disabled Extension",
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"properties": {
"": {
"$ref": "#/components/schemas/extensionListSchema"
}
},
"type": "object"
}
},
"type": "object"
},
"example": {
"data": [
{
"id": "widget",
"name": "Chat Widget",
"tagLine": "Drag-n-drop chat plugin for your website",
"description": "Drag-n-drop chat plugin for your website",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://widget-eu.cometchats.io",
"accessToAppData": false,
"adminURL": "https://widget-eu.cometchat.io/v1/show-setting?appToken=BArL8wLC1jkTws5bgH1DDvAMDevHdiAmMI5NGyQXs-I=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1591812821,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "document",
"name": "Collaborative document",
"tagLine": "Allows you create and share documents for collaboration",
"description": "Allows you create and share documents for collaboration",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://document-eu.cometchat.io/v1/create",
"accessToAppData": false,
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1592815197,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "whiteboard",
"name": "Collaborative whiteboard",
"tagLine": "Allows you create and share whiteboards for collaboration",
"description": "Allows you create and share whiteboards for collaboration",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://whiteboard-eu.cometchat.io/v1/create",
"accessToAppData": false,
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1595838286,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "data-masking",
"name": "Data Masking",
"tagLine": "Hide phone numbers, email addresses and other sensitive information in messages.",
"description": "Hide phone numbers, email addresses and other sensitive information in messages.",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://data-masking-eu.cometchat.io/v1/filter",
"accessToAppData": false,
"adminURL": "https://data-masking-eu.cometchat.io/v1/show-setting?appToken=DSjVCnryJFoSIgvIaCJUWF5sS1mMLy7V-pD6HoNlA3A=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1592815197,
"hooks": {
"data": [
{
"hook": "before_message",
"description": "The hook will be triggered before adding message to database.",
"isActive": true,
"enabled": 1,
"createdAt": 1552383451
}
]
},
"categories": {
"data": []
}
},
{
"id": "email-notification",
"name": "Email Notification",
"tagLine": "Notify users via email for unread messages.",
"description": "Notify users via email for unread messages.",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://email-notification-eu.cometchat.io/v1/send-email",
"accessToAppData": false,
"adminURL": "https://email-notification-eu.cometchat.io/v1/show-setting?appToken=c2JH61Mw2dnThPa_tHfP284hF6-8kbAvVfIlNSSzgKk=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": true,
"createdAt": 1568373595,
"hooks": {
"data": [
{
"hook": "after_message",
"description": "The hook triggers after sending a message.",
"isActive": true,
"enabled": 1,
"createdAt": 1555001765
}
]
},
"categories": {
"data": []
}
},
{
"id": "email-replies",
"name": "Email Replies",
"tagLine": "Reply to texts directly via emails",
"description": "Replying in a conversation from Email notifications just got simpler. With Email Replies, users can respond in a conversation by replying to the email.",
"author": "CometChat",
"email": "help@cometchat.com",
"accessToAppData": false,
"adminURL": "https://email-replies-eu.cometchat.io/v1/show-setting?appToken=slIAhyFb4PCG5R4dJBM4lTlYTdYznNORCBPL-Rxw_Qs=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1592815197,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "emojis",
"name": "Emojis",
"tagLine": "Emojis for web",
"description": "Emojis for web",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://emojis-eu.cometchat.io/v1/emojis",
"accessToAppData": false,
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1592829829,
"hooks": {
"data": [
{
"hook": "before_message",
"description": "The hook will be triggered before adding message to database.",
"isActive": true,
"enabled": 1,
"createdAt": 1552383451
}
]
},
"categories": {
"data": []
}
},
{
"id": "gifs-gfycat",
"name": "Gfycat",
"tagLine": "Get the best GIFS for all your conversations",
"description": "Get the best GIFS for all your conversations",
"author": "CometChat",
"email": "help@cometchat.com",
"accessToAppData": false,
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1622447638,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "gifs-giphy",
"name": "Giphy",
"tagLine": "Be Animated",
"description": "Be Animated",
"author": "CometChat",
"email": "help@cometchat.com",
"accessToAppData": false,
"adminURL": "https://gifs-giphy-eu.cometchat.io/v1/show-setting?appToken=Lv2_oE3L6JHOMbOiNNBjWsi0v6mV9r-aKVLofy_KZ7s=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1622447638,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "image-moderation",
"name": "Image Moderation",
"tagLine": "AI-powered image moderation to detect unsafe content.",
"description": "AI-powered image moderation to detect unsafe content.",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://image-moderation-eu.cometchat.io/v1/analyze",
"accessToAppData": false,
"adminURL": "https://image-moderation-eu.cometchat.io/v1/show-setting?appToken=cDnVkg8SFY7wjiaHjpGWyTqYaw9ekcrk-tAHhSyxkDc=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": true,
"createdAt": 1568373925,
"hooks": {
"data": [
{
"hook": "before_message",
"description": "The hook will be triggered before adding message to database.",
"isActive": true,
"enabled": 1,
"createdAt": 1552383451
}
]
},
"categories": {
"data": []
}
},
{
"id": "report-user",
"name": "Report User",
"tagLine": "Enable users to report other users",
"description": "Enable users to report other users",
"author": "CometChat",
"email": "help@cometchat.com",
"accessToAppData": false,
"adminURL": "https://report-user-eu.cometchat.io/v1/show-setting?appToken=cDnVkg8SFY7wjiaHjpGWyTqYaw9ekcrk-tAHhSyxkDc=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1655375268,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "report-message",
"name": "Report User",
"tagLine": "Enable users to report messages in chat",
"description": "Enable users to report messages in chat",
"author": "CometChat",
"email": "help@cometchat.com",
"accessToAppData": false,
"adminURL": "https://report-message-eu.cometchat.io/v1/show-setting?appToken=cDnVkg8SFY7wjiaHjpGWyTqYaw9ekcrk-tAHhSyxkDc=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1655447120,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "stickers-stipop",
"name": "Stipop",
"tagLine": "Used to create meaningful experiences in your app with stickers that users love.",
"description": "Used to create meaningful experiences in your app with stickers that users love.",
"author": "CometChat",
"email": "help@cometchat.com",
"accessToAppData": false,
"adminURL": "https://stickers-stipop-eu.cometchat.io/v1/show-setting?appToken=cDnVkg8SFY7wjiaHjpGWyTqYaw9ekcrk-tAHhSyxkDc=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": true,
"createdAt": 1655375268,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "url-shortener-tinyurl",
"name": "TinyURL",
"tagLine": "Helps you convert your long website links into short, manageable URLs that are reliable, secure and never expire.",
"description": "Helps you convert your long website links into short, manageable URLs that are reliable, secure and never expire.",
"author": "CometChat",
"email": "help@cometchat.com",
"accessToAppData": false,
"adminURL": "https://url-shortener-tinyurl-eu.cometchat.io/v1/show-setting?appToken=cDnVkg8SFY7wjiaHjpGWyTqYaw9ekcrk-tAHhSyxkDc=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": true,
"createdAt": 1655375268,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "url-shortener-bitly",
"name": "Bitly",
"tagLine": "Helps you create and share branded links with custom domains at scale",
"description": "Helps you create and share branded links with custom domains at scale",
"author": "CometChat",
"email": "help@cometchat.com",
"accessToAppData": false,
"adminURL": "https://url-shortener-bitly-eu.cometchat.io/v1/show-setting?appToken=cDnVkg8SFY7wjiaHjpGWyTqYaw9ekcrk-tAHhSyxkDc=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": true,
"createdAt": 1655375268,
"hooks": {
"data": []
},
"categories": {
"data": []
}
},
{
"id": "human-moderation",
"name": "In-flight Message Moderation",
"tagLine": "Manually moderate content to ensure a safe messaging environment.",
"description": "Manually moderate content to ensure a safe messaging environment.",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://human-moderation-eu.cometchat.io/v1/moderate-message",
"accessToAppData": false,
"adminURL": "https://human-moderation-eu.cometchat.io/v1/show-setting?appToken=-NxCcxlAt1qBHn8nibcc98qw5XqTmFB4QYCbJaGO3fo=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": true,
"createdAt": 1568373980,
"hooks": {
"data": [
{
"hook": "before_message",
"description": "The hook will be triggered before adding message to database.",
"isActive": true,
"enabled": 1,
"createdAt": 1552383451
}
]
},
"categories": {
"data": []
}
},
{
"id": "link-preview",
"name": "Link Preview",
"tagLine": "Generate meta description for URLs.",
"description": "Generate meta description for URLs.",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://link-preview-eu.cometchat.io/v1/generate-preview",
"accessToAppData": false,
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": true,
"createdAt": 1568374120,
"hooks": {
"data": [
{
"hook": "before_message",
"description": "The hook will be triggered before adding message to database.",
"isActive": true,
"enabled": 1,
"createdAt": 1552383451
}
]
},
"categories": {
"data": []
}
},
{
"id": "mentions",
"name": "Mentions",
"tagLine": "Mention users in conversations",
"description": "Mention users in conversations",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://mentions-eu.cometchat.io/v1/save",
"accessToAppData": false,
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": false,
"createdAt": 1622447638,
"hooks": {
"data": [
{
"hook": "after_message",
"description": "The hook triggers after sending a message.",
"isActive": true,
"enabled": 1,
"createdAt": 1555001765
}
]
},
"categories": {
"data": []
}
},
{
"id": "voice-transcription",
"name": "Voice transcription",
"tagLine": "Used to transcribe Audio Messages",
"description": "Used to transcribe Audio Messages",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://voice-transcription-eu.cometchat.io/v1/transcribe",
"accessToAppData": false,
"adminURL": "https://voice-transcription-eu.cometchat.io/v1/show-setting?appToken=NTxjUhEcKA1uIQ-lCyaYy0hrM2C77fs8y6wRtEZ04wg=.eyJhcHBJZCI6IjE5NzQ0OGU3NzlmMGZhYyJ9",
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": true,
"createdAt": 1622447638,
"hooks": {
"data": [
{
"hook": "after_message",
"description": "The hook triggers after sending a message.",
"isActive": true,
"enabled": 1,
"createdAt": 1555001765
}
]
},
"categories": {
"data": []
}
},
{
"id": "message-translation",
"name": "Message Translation",
"tagLine": "Translate text messages in different languages on-the-fly.",
"description": "Translate text messages in different languages on-the-fly.",
"author": "CometChat",
"email": "help@cometchat.com",
"webhookURL": "https://message-translation-eu.cometchat.io/v1/translate",
"accessToAppData": false,
"websiteURL": "https://www.cometchat.com",
"isActive": true,
"isPrivate": false,
"isInvisible": false,
"isThirdParty": true,
"createdAt": 1568373749,
"hooks": {
"data": [
{
"hook": "before_message",
"description": "The hook will be triggered before adding message to database.",
"isActive": true,
"enabled": 1,
"createdAt": 1552383451
}
]
},
"categories": {
"data": []
}
},
{
"id": "pin-message",
"name": "Pin Message",
"tagLine": "Pin messages in group conversations",