-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmarketplace-apps.yaml
More file actions
1920 lines (1906 loc) · 122 KB
/
marketplace-apps.yaml
File metadata and controls
1920 lines (1906 loc) · 122 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
# We have officially pulled down marketp[lace endpoint from docs because it's not for users but Rocket.Chat Client
openapi: 3.0.0
info:
version: 1.0.0
title: Marketplace Apps
# description: |-
# The following marketplace apps endpoints are available:
# * **WhatsApp**: Send a template [WhatsApp](https://docs.rocket.chat/extend-rocket.chat-capabilities/rocket.chat-marketplace/rocket.chat-public-apps-guides/omnichannel-apps/whatsapp) message.
# * **Rasa**: Close a [Rasa](https://docs.rocket.chat/extend-rocket.chat-capabilities/rocket.chat-marketplace/rocket.chat-public-apps-guides/omnichannel-apps/rasa-app) app chat or perform handover.
servers:
- url: https://apiexplorer.support.rocket.chat
paths:
'/api/apps/public/{app-id}/incoming':
parameters:
- schema:
type: string
name: app-id
in: path
required: true
description: The app id. Navigate to App Info > Details > APIs > POST incoming to get the complete URL for this endpoint.
post:
summary: Close Chat or Perform Handover
tags:
- Rasa App
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
msg:
type: string
examples:
Close chat:
value:
msg: ' Close chat request handled successfully'
Perform handover:
value:
msg: ' Perform Handover request handled successfully'
'401':
$ref: '#/components/responses/authorizationError'
operationId: post-api-apps-public-app-id-incoming
description: |-
Close a chat session or perform handover. The appropriate endpoint URL including the `appId` for closing chat or perfoming handover in your workspace is displayed under **App Info > Details > APIs > POST incoming** section of the Rasa app.
### Changelog
| Version | Description |
| ---------------- | ------------|
|5.0.0 | Added |
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
application/json:
schema:
type: object
required:
- action
- sessionId
properties:
action:
type: string
description: 'The action can either be `handover` or `close-chat`. '
sessionId:
type: string
description: The ID of the Rasa session.
actionData:
type: object
properties:
targetDepartment:
type: string
description: The targeted department.
examples:
Example:
value:
action: close-chat
sessionId: 2Sfq8wXw4fYPMf6r4
'/api/apps/public/{appId}/templateMessage':
post:
tags:
- WhatsApp
summary: Send a WhatsApp Template Message
description: |-
Use this endpoint to send WhatsApp template messages directly to specified contacts from your workspace.
1. Click the **Marketplace** icon from the main menu. Select **Explore** from the drop-down menu.
2. Locate your preferred <a href="https://docs.rocket.chat/docs/whatsapp-apps" target="_blank">WhatsApp App</a>.
3. Go to *App Info > Details > APIs* and find the `POST templateMessage` section.
4. Copy the `POST templateMessage` endpoint URL for your WhatsApp app from the provided curl example. This URL includes the required `appId`. Send a template message request using this URL as the endpoint.
Before sending template messages from Rocket.Chat through any <a href="https://docs.rocket.chat/docs/whatsapp-apps" target="_blank">WhatsApp App</a>, ensure that you have set up the templates in respective WhatsApp provider account. Refer to the official guide for details on <a href="https://developer.rocket.chat/docs/whatsapp-business-template-messages#set-up-template-messages-on-whatsapp" target="_blank">configuring template messages for each WhatsApp app</a>.
operationId: post-api-apps-public-app_id-templateMessage
parameters:
- name: appId
in: path
required: true
schema:
type: string
requestBody:
description: 'We strongly recommend including the + prefix for all phone numbers in the payload. While you can submit numbers without the leading + sign, we have encountered cases where WhatsApp will return an invalid response despite the number being in use.'
content:
application/json:
schema:
type: object
properties:
phoneNumbers:
type: array
description: 'Recipient WhatsApp IDs where you want to send the template message. You can validate a WhatsApp id from <a href="https://developers.facebook.com/docs/whatsapp/on-premises/reference/contacts" target="_blank">here</a>.'
items:
type: string
connectedWhatsAppNo:
type: string
description: The WhatsApp Number from which you want to send this template message. The WhatsApp number connected to your workspace via the app.
targetAgent:
type: string
description: Username of the agent you want to transfer the chat to when the WhatsApp user replies.
targetDepartment:
type: string
description: Department name or ID where you want to transfer the chat to when the WhatsApp user replies.
template:
type: object
description: |-
Provide the details of the template message you want to send. The structure of the template object may differ depending on the template defined within your WhatsApp provider account. For further clarification, refer to the official guide on <a href="https://developer.rocket.chat/docs/whatsapp-business-template-messages#api-endpoint" target="_blank">sending template messages via API in Rocket.Chat</a>. The example template object provided here is based on the configuration outlined in the official guide for the <a href="https://developer.rocket.chat/docs/whatsapp-business-template-messages#whatsapp-cloud" target="_blank">WhatsApp Cloud App</a>.
If your template message includes parameters, make sure to replace all of them with the appropriate information before sending. Failure to do so may lead to an error.
properties:
namespace:
type: string
name:
type: string
language:
type: object
properties:
code:
type: string
policy:
type: string
components:
type: array
items:
type: object
properties:
type:
type: string
parameters:
type: array
items:
type: object
properties:
type:
type: string
text:
type: string
required:
- phoneNumbers
- connectedWhatsAppNo
- template
examples:
WhatsApp Cloud:
value:
phoneNumbers:
- '2368106035555'
connectedWhatsAppNo: '104920685899299'
template:
name: ship
language:
code: en
policy: deterministic
components:
- type: body
parameters:
- type: text
text: '20'
WhatsApp 360Dialog (Cloud API):
value:
phoneNumbers:
- "xxxxxxxxxxxxx"
connectedWhatsAppNo: "555195251xxx"
template:
name: "boarding_pass"
language:
code: "en"
policy: "deterministic"
components:
- type: "header"
parameters:
- type: "text"
text: "halo"
- type: "body"
parameters:
- type: "text"
text: "abc"
- type: "text"
text: "xyz"
Whatsapp Sandbox:
value:
phoneNumbers:
- "50364357612"
template:
name: "first_welcome_messsage"
language:
code: "en"
components:
- type: "body"
parameters:
- type: "text"
text: "Your name goes here"
responses:
'200':
$ref: '#/components/responses/trueSuccess'
'401':
$ref: '#/components/responses/authorizationError'
'403':
$ref: '#/components/responses/forbiddenError'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
examples:
Too many phone numbers:
value:
success: false
error: Too many phone numbers! Please make sure that phoneNumbers are <= 250
Agent Not Found:
value:
success: false
error: No Agent found with username abc98
Department Not Found:
value:
success: false
error: No Department found with id/Name SalesDepartment
Invalid WhatsApp Contact:
value:
success: false
error: Connected WhatsApp Number (connectedWhatsAppNo) i.e. 565412001234 is not a valid WhatsApp contact. Contact Status is invalid
Invalid Connected WhatsApp Number:
value:
success: false
error: 'Error! Connected WhatsApp Number (connectedWhatsAppNo) i.e. 565412001234 has not been registered yet on Rocket.Chat. Please goto #omnichannel-whatsapp-setup channel and connect this WhatsApp number first there before sending this request again.'
/api/apps:
post:
summary: Install Private Apps
tags:
- Manage Apps
description: |-
Install a <a href="https://docs.rocket.chat/docs/rocketchat-marketplace#private-apps" target="_blank">private app</a> via URL. <a href="https://docs.rocket.chat/docs/permissions" target="_blank">Permission</a> required: `Manage Apps`.
### Changelog
| Version | Description |
| ---------------- | ------------|
|3.1.0 | Added |
operationId: post-api-apps
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
url:
type: string
description: The app URL where the zip file is located.
app:
type: string
format: binary
description: The zip file containing the app.
permissions:
type: array
description: An array of the [permissions](https://developer.rocket.chat/docs/app-permission-system) required for your app. This is required if permissions are defined in your `app.json` file.
items:
type: object
properties:
name:
type: string
examples:
Example:
value:
url: 'https://github.com/RocketChat/Apps.RocketChat.Tester/blob/master/dist/appsrocketchattester_0.0.5.zip?raw=true'
app: 'path to the zip file'
description: You can use either the `app` or `url` parameter to upload the file.
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
app:
type: object
properties:
id:
type: string
version:
type: string
requiredApiVersion:
type: string
iconFile:
type: string
author:
type: object
properties:
name:
type: string
homepage:
type: string
support:
type: string
name:
type: string
nameSlug:
type: string
classFile:
type: string
description:
type: string
implements:
type: array
items:
type: object
iconFileContent:
type: string
status:
type: string
implemented:
type: object
properties:
IPreMessageSentPrevent:
type: boolean
IPreMessageSentExtend:
type: boolean
IPreMessageSentModify:
type: boolean
IPostMessageSent:
type: boolean
IPreMessageDeletePrevent:
type: boolean
IPostMessageDeleted:
type: boolean
IPreMessageUpdatedPrevent:
type: boolean
IPreMessageUpdatedExtend:
type: boolean
IPreMessageUpdatedModify:
type: boolean
IPostMessageUpdated:
type: boolean
IPostMessageReacted:
type: boolean
IPostMessageFollowed:
type: boolean
IPostMessagePinned:
type: boolean
IPostMessageStarred:
type: boolean
IPostMessageReported:
type: boolean
IPreRoomCreatePrevent:
type: boolean
IPreRoomCreateExtend:
type: boolean
IPreRoomCreateModify:
type: boolean
IPostRoomCreate:
type: boolean
IPreRoomDeletePrevent:
type: boolean
IPostRoomDeleted:
type: boolean
IPreRoomUserJoined:
type: boolean
IPostRoomUserJoined:
type: boolean
IPreRoomUserLeave:
type: boolean
IPostRoomUserLeave:
type: boolean
IPostExternalComponentOpened:
type: boolean
IPostExternalComponentClosed:
type: boolean
IUIKitInteractionHandler:
type: boolean
IUIKitLivechatInteractionHandler:
type: boolean
IPostLivechatRoomStarted:
type: boolean
IPostLivechatRoomClosed:
type: boolean
ILivechatRoomClosedHandler:
type: boolean
IPostLivechatAgentAssigned:
type: boolean
IPostLivechatAgentUnassigned:
type: boolean
IPostLivechatRoomTransferred:
type: boolean
IPostLivechatGuestSaved:
type: boolean
IPostLivechatRoomSaved:
type: boolean
IPreFileUpload:
type: boolean
IPreEmailSent:
type: boolean
IPostUserCreated:
type: boolean
IPostUserUpdated:
type: boolean
IPostUserDeleted:
type: boolean
IPostUserLoggedIn:
type: boolean
IPostUserLoggedOut:
type: boolean
IPostUserStatusChanged:
type: boolean
licenseValidation:
type: object
properties:
errors:
type: object
warnings:
type: object
success:
type: boolean
examples:
Success:
value:
app:
id: bc4dd4a1-bf9b-408e-83a4-aba7eba0bf02
version: 0.0.5
requiredApiVersion: ^1.33.0
iconFile: icon.png
author:
name: Rocket.Chat
homepage: 'https://github.com/RocketChat'
support: a
name: Apps.RocketChat.Tester
nameSlug: appsrocketchattester
classFile: AppsRocketChatTesterApp.js
description: An app that provides endpoints to test Apps integration to Rocket.Chat
implements: []
iconFileContent: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAAGQBAMAAACAGwOrAAAAG1BMVEUAAAD///9fX19/f38/Pz+fn5/f398fHx+/v7F+DAse5zMkkE4D1Jf6exKnYRje4LriXRQ0JzTVP2t7hLNtFWODfxNqiaa6VE8tGjFCxXyc1HHsTisiQ0rijg4mTvyAAAElFTkSuQmCC'
status: auto_enabled
implemented:
IPreMessageSentPrevent: false
IPreMessageSentExtend: false
IPreMessageSentModify: false
IPostMessageSent: false
IPreMessageDeletePrevent: false
IPostMessageDeleted: false
IPreMessageUpdatedPrevent: false
IPreMessageUpdatedExtend: false
IPreMessageUpdatedModify: false
IPostMessageUpdated: false
IPostMessageReacted: false
IPostMessageFollowed: false
IPostMessagePinned: false
IPostMessageStarred: false
IPostMessageReported: false
IPreRoomCreatePrevent: false
IPreRoomCreateExtend: false
IPreRoomCreateModify: false
IPostRoomCreate: false
IPreRoomDeletePrevent: false
IPostRoomDeleted: false
IPreRoomUserJoined: false
IPostRoomUserJoined: false
IPreRoomUserLeave: false
IPostRoomUserLeave: false
IPostExternalComponentOpened: false
IPostExternalComponentClosed: false
IUIKitInteractionHandler: false
IUIKitLivechatInteractionHandler: false
IPostLivechatRoomStarted: false
IPostLivechatRoomClosed: false
ILivechatRoomClosedHandler: false
IPostLivechatAgentAssigned: false
IPostLivechatAgentUnassigned: false
IPostLivechatRoomTransferred: false
IPostLivechatGuestSaved: false
IPostLivechatRoomSaved: false
IPreFileUpload: false
IPreEmailSent: false
IPostUserCreated: false
IPostUserUpdated: false
IPostUserDeleted: false
IPostUserLoggedIn: false
IPostUserLoggedOut: false
IPostUserStatusChanged: false
licenseValidation:
errors: {}
warnings: {}
success: true
'401':
$ref: '#/components/responses/authorizationError'
/api/apps/logs:
get:
summary: Get All Apps Logs
tags:
- Manage Apps
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
offset:
type: integer
logs:
type: array
items:
type: object
properties:
_id:
type: string
appId:
type: string
method:
type: string
entries:
type: array
items:
type: object
properties:
caller:
type: string
severity:
type: string
method:
type: string
timestamp:
type: string
args:
type: array
items:
type: string
startTime:
type: string
endTime:
type: string
totalTime:
type: integer
_createdAt:
type: string
instanceId:
type: string
_updatedAt:
type: string
count:
type: integer
total:
type: integer
success:
type: boolean
examples:
All App Logs:
value:
offset: 0
logs:
- _id: 68341684d387e3d7509267f6
appId: 30d2e4bf-2402-4197-b844-e7082b07dc65
method: 'scheduler:registration.auto.renew.scheduler'
entries:
- caller: anonymous OR constructor -> handleScheduler
severity: debug
method: 'scheduler:registration.auto.renew.scheduler'
timestamp: '2025-05-26T07:21:40.283Z'
args:
- Job processor registration.auto.renew.scheduler is being executed...
- caller: anonymous OR constructor -> handleScheduler
severity: debug
method: 'scheduler:registration.auto.renew.scheduler'
timestamp: '2025-05-26T07:21:40.295Z'
args:
- Job processor registration.auto.renew.scheduler was successfully executed
startTime: '2025-05-26T07:21:40.283Z'
endTime: '2025-05-26T07:21:40.295Z'
totalTime: 12
_createdAt: '2025-05-26T07:21:40.295Z'
instanceId: ad219c7b-84a5-4077-9ede-f6f9d7c4d3bd
_updatedAt: '2025-05-26T07:21:40.296Z'
- _id: 68340f7cd387e3d7509267f5
appId: 30d2e4bf-2402-4197-b844-e7082b07dc65
method: 'scheduler:registration.auto.renew.scheduler'
entries:
- caller: anonymous OR constructor -> handleScheduler
severity: debug
method: 'scheduler:registration.auto.renew.scheduler'
timestamp: '2025-05-26T06:51:40.284Z'
args:
- Job processor registration.auto.renew.scheduler is being executed...
- caller: anonymous OR constructor -> handleScheduler
severity: debug
method: 'scheduler:registration.auto.renew.scheduler'
timestamp: '2025-05-26T06:51:40.294Z'
args:
- Job processor registration.auto.renew.scheduler was successfully executed
startTime: '2025-05-26T06:51:40.284Z'
endTime: '2025-05-26T06:51:40.294Z'
totalTime: 10
_createdAt: '2025-05-26T06:51:40.294Z'
instanceId: ad219c7b-84a5-4077-9ede-f6f9d7c4d3bd
_updatedAt: '2025-05-26T06:51:40.295Z'
count: 2
total: 3916
success: true
'400':
$ref: '#/components/responses/forbiddenError'
'401':
$ref: '#/components/responses/authorizationError'
operationId: get-api-apps-logs
description: |-
Use this endpoint to get the list of apps' logs for your workspace.
### Changelog
| Version | Description |
| ---------------- | ------------|
|7.7.0 | Added |
parameters:
- $ref: '#/components/parameters/UserId'
- $ref: '#/components/parameters/Auth-Token'
- schema:
type: string
example: 4406213d-8624-4355-9641-29e65bf3e3bc
in: query
name: appId
description: Enter the app ID for which you want to view logs.
- $ref: '#/components/parameters/logLevel'
- $ref: '#/components/parameters/method'
- $ref: '#/components/parameters/startDate'
- $ref: '#/components/parameters/endDate'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/count'
- $ref: '#/components/parameters/sort'
'/app/{id}/logs':
get:
summary: Get an App's Logs
tags:
- Manage Apps
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
offset:
type: integer
logs:
type: array
items:
type: object
properties:
_id:
type: string
appId:
type: string
method:
type: string
entries:
type: array
items:
type: object
properties:
caller:
type: string
severity:
type: string
method:
type: string
timestamp:
type: string
args:
type: array
items:
type: string
startTime:
type: string
endTime:
type: string
totalTime:
type: integer
_createdAt:
type: string
instanceId:
type: string
_updatedAt:
type: string
count:
type: integer
total:
type: integer
success:
type: boolean
examples:
App Log:
value:
offset: 0
logs:
- _id: 68341684d387e3d7509267f6
appId: 30d2e4bf-2402-4197-b844-e7082b07dc65
method: 'scheduler:registration.auto.renew.scheduler'
entries:
- caller: anonymous OR constructor -> handleScheduler
severity: debug
method: 'scheduler:registration.auto.renew.scheduler'
timestamp: '2025-05-26T07:21:40.283Z'
args:
- Job processor registration.auto.renew.scheduler is being executed...
- caller: anonymous OR constructor -> handleScheduler
severity: debug
method: 'scheduler:registration.auto.renew.scheduler'
timestamp: '2025-05-26T07:21:40.295Z'
args:
- Job processor registration.auto.renew.scheduler was successfully executed
startTime: '2025-05-26T07:21:40.283Z'
endTime: '2025-05-26T07:21:40.295Z'
totalTime: 12
_createdAt: '2025-05-26T07:21:40.295Z'
instanceId: ad219c7b-84a5-4077-9ede-f6f9d7c4d3bd
_updatedAt: '2025-05-26T07:21:40.296Z'
- _id: 68340f7cd387e3d7509267f5
appId: 30d2e4bf-2402-4197-b844-e7082b07dc65
method: 'scheduler:registration.auto.renew.scheduler'
entries:
- caller: anonymous OR constructor -> handleScheduler
severity: debug
method: 'scheduler:registration.auto.renew.scheduler'
timestamp: '2025-05-26T06:51:40.284Z'
args:
- Job processor registration.auto.renew.scheduler is being executed...
- caller: anonymous OR constructor -> handleScheduler
severity: debug
method: 'scheduler:registration.auto.renew.scheduler'
timestamp: '2025-05-26T06:51:40.294Z'
args:
- Job processor registration.auto.renew.scheduler was successfully executed
startTime: '2025-05-26T06:51:40.284Z'
endTime: '2025-05-26T06:51:40.294Z'
totalTime: 10
_createdAt: '2025-05-26T06:51:40.294Z'
instanceId: ad219c7b-84a5-4077-9ede-f6f9d7c4d3bd
_updatedAt: '2025-05-26T06:51:40.295Z'
count: 2
total: 3916
success: true
'400':
$ref: '#/components/responses/forbiddenError'
'401':
$ref: '#/components/responses/authorizationError'
'404':
description: Not Found
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
examples:
App not found:
value:
success: false
error: 'No App found by the id of: :id'
operationId: 'get-app-:id-logs'
description: |-
Use this endpoint to get a specific app's logs for your workspace.
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
- schema:
type: string
example: fc96e832-5472-49e4-aace-1521a7ebeaa6
name: id
in: path
required: true
description: Enter the app ID for which you want to view the logs results.
- $ref: '#/components/parameters/method'
- $ref: '#/components/parameters/logLevel'
- $ref: '#/components/parameters/startDate'
- $ref: '#/components/parameters/endDate'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/count'
- $ref: '#/components/parameters/sort'
/api/v1/video-conference/jitsi.update-timeout:
post:
summary: Update Jitsi Timeout
tags:
- Jitsi App
description: |-
### Changelog
| Version | Description |
| ---------------- | ------------|
|0.74.0 | Added |
operationId: post-api-v1-video-conference-jitsi.update-timeout
parameters:
- $ref: '#/components/parameters/UserId'
- $ref: '#/components/parameters/Auth-Token'
requestBody:
content:
application/json:
schema:
type: object
properties:
roomId:
type: string
description: The room Id of the room to update the jitsi timeout.
required:
- roomId
examples:
Example:
value:
roomId: hyoM5JSQi94RwqPE7
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
jitsiTimeout:
type: string
success:
type: boolean
examples:
Success:
value:
jitsiTimeout: '2019-01-16T13:17:11.951Z'
success: true
'401':
$ref: '#/components/responses/authorizationError'
/api/apps/marketplace:
get:
summary: List Marketplace Apps
description: Get a list of all the apps on [Rocket.Chat marketplace](https://www.rocket.chat/marketplace).
tags:
- Manage Apps
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
type: object
properties:
appId:
type: string
latest:
type: object
properties:
internalId:
type: string
id:
type: string
name:
type: string
nameSlug:
type: string
version:
type: string
categories:
type: array
items:
type: string
languages:
type: array
items:
type: string
shortDescription:
type: string
description:
type: string
privacyPolicySummary:
type: string
documentationUrl:
type: string
detailedDescription:
type: object
properties:
raw:
type: string
rendered:
type: string
detailedChangelog:
type: object
properties:
raw:
type: string
rendered:
type: string
requiredApiVersion:
type: string
author:
type: object
properties:
name:
type: string
support:
type: string
homepage:
type: string
classFile:
type: string
iconFile:
type: string
iconFileData:
type: string
status:
type: string
changesNote:
type: string
internalChangesNote:
type: string
isVisible:
type: boolean
createdDate:
type: string
modifiedDate:
type: string
isPurchased:
type: boolean
isSubscribed:
type: boolean
subscriptionInfo:
type: object
properties:
typeOf:
type: string
status:
type: string
statusFromBilling:
type: boolean
isSeatBased:
type: boolean
seats:
type: integer
maxSeats:
type: integer
license:
type: object
properties:
license:
type: string
version:
type: integer
expireDate:
type: string
startDate:
type: string
periodEnd:
type: string
endDate:
type: string
externallyManaged:
type: boolean
isSubscribedViaBundle:
type: boolean
addonId:
type: string
compileJobId:
type: string
compiled:
type: boolean
isEnterpriseOnly:
type: boolean
permissions:
type: array
items:
type: object
properties:
name:
type: string
isAddon:
type: boolean
addonId: