-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeprecated.json
4396 lines (4396 loc) · 212 KB
/
Deprecated.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
[
{
"UniqueName": "adobesign",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../adobesign/",
"Actions": [
{
"OperationId": "CreateAgreementById",
"Name": "Create an agreement from an uploaded document and send for signature (Old) [DEPRECATED]",
"Description": "This operation creates an agreement from a document uploaded in Adobe Sign and sends it for signature.",
"Anchor": "#create-an-agreement-from-an-uploaded-document-and-send-for-signature-(old)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateAgreementByTemplate",
"Name": "Create an agreement from a library template and send for signature (Old) [DEPRECATED]",
"Description": "This operation creates an agreement from a template stored in the user's Adobe Sign library and sends it for signature.",
"Anchor": "#create-an-agreement-from-a-library-template-and-send-for-signature-(old)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateAgreementByUrl",
"Name": "Create an agreement from a document URL and send for signature (Old) [DEPRECATED]",
"Description": "This operation creates an agreement from a document uploaded in Adobe Sign and sends it for signature.",
"Anchor": "#create-an-agreement-from-a-document-url-and-send-for-signature-(old)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateLibraryDocumentById",
"Name": "Create a library template from an uploaded document (Old) [DEPRECATED]",
"Description": "This operation creates a template in Adobe Sign library from an uploaded document. Use this template for sending agreements.",
"Anchor": "#create-a-library-template-from-an-uploaded-document-(old)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateLibraryDocumentByUrl",
"Name": "Create a library template from a document URL (Old) [DEPRECATED]",
"Description": "This operation creates a template in Adobe Sign library from a document URL. Use this template for sending agreements",
"Anchor": "#create-a-library-template-from-a-document-url-(old)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateTransientDocument",
"Name": "Upload a document and get a document ID (Old) [DEPRECATED]",
"Description": "This operation uploads a document in your Adobe Sign account and returns a document ID for it. This document is temporarily stored in Adobe Sign and the document ID can be used for further operations like creating an agreement.",
"Anchor": "#upload-a-document-and-get-a-document-id-(old)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetAgreementFormFieldData",
"Name": "Get form field data of agreement (Old) [DEPRECATED]",
"Description": "Retrieves data entered into the interactive form fields of the agreement.",
"Anchor": "#get-form-field-data-of-agreement-(old)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetAgreementInfo",
"Name": "Get the status of an agreement [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get the status of an agreement instead.\nThis operation fetches all the current information of an agreement, like status.",
"Anchor": "#get-the-status-of-an-agreement-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetAllAgreements",
"Name": "Get a list of all agreements (Old) [DEPRECATED]",
"Description": "This operation fetches the list of all agreements of the user.",
"Anchor": "#get-a-list-of-all-agreements-(old)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetAllDocumentsofAnAgreement",
"Name": "Get a list of all the document IDs from an agreement [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get a list of all the document IDs from an agreement instead.\nThis operation fetches the IDs of all documents and supporting documents of an agreement.",
"Anchor": "#get-a-list-of-all-the-document-ids-from-an-agreement-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetCombinedDocument",
"Name": "Get a PDF of a signed agreement [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get a PDF of a signed agreement instead.\nThis operation fetches the PDF file stream of the combined or signed agreement. Note that the file stream should be stored with a filename ending in .pdf file extension.",
"Anchor": "#get-a-pdf-of-a-signed-agreement-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetDocument",
"Name": "Get a document from an agreement [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get a document from an agreement instead.\nThis operation fetches the file stream of a specific document of the agreement.",
"Anchor": "#get-a-document-from-an-agreement-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetLibraryDocuments",
"Name": "Get a list of all library templates (Old) [DEPRECATED]",
"Description": "This operation fetches the list of all documents stored as templates in the Adobe Sign library of the user.",
"Anchor": "#get-a-list-of-all-library-templates-(old)-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "aletheia",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../aletheia/",
"Actions": [
{
"OperationId": "StockData",
"Name": "Get Stock Data [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get Stock Data (V2) instead.\nAccess stock data for any US-based publicly traded equity security (deprecated)",
"Anchor": "#get-stock-data-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "approvals",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../approvals/",
"Actions": [
{
"OperationId": "approvalSubscribe",
"Name": "Start and wait for an Approve or Reject - First to respond approval [DEPRECATED]",
"Description": "This action has been deprecated. Please use Start and wait for an approval instead.\nStarts an automated approval process and then waits for it to complete. The approval is only canceled on timeout. (Deprecated)",
"Anchor": "#start-and-wait-for-an-approve-or-reject---first-to-respond-approval-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "approvalSubscribeV2",
"Name": "Start and wait for an approval [DEPRECATED]",
"Description": "This action has been deprecated. Please use Start and wait for an approval instead.\nStarts an automated approval process and then waits for it to complete. The approval is only canceled on timeout. (Deprecated)",
"Anchor": "#start-and-wait-for-an-approval-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "asana",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../asana/",
"Actions": [
{
"OperationId": "AddComment",
"Name": "Add Comment [DEPRECATED]",
"Description": "This action has been deprecated. Please use Add Comment (V2) instead.\nThis operation is used to add a comment to an existing task.",
"Anchor": "#add-comment-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CompleteTask",
"Name": "Complete Task [DEPRECATED]",
"Description": "This action has been deprecated. Please use Complete Task (V2) instead.\nThis operation is used to mark an existing task as complete.",
"Anchor": "#complete-task-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateProject",
"Name": "Create new project [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create a new project (V2) instead.\nThis operation is used to create a new project.",
"Anchor": "#create-new-project-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateTask",
"Name": "Create Task [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create Task (V2) instead.\nThis operation is used to create a new task in your Asana project.",
"Anchor": "#create-task-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetProject",
"Name": "Get project by ID [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get project by ID (V2) instead.\nThis operation retrieves project object by Project ID.",
"Anchor": "#get-project-by-id-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetTask",
"Name": "Get task by ID [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get task by ID (V2) instead.\nThis operation retrieves a task object by Task ID.",
"Anchor": "#get-task-by-id-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetUser",
"Name": "Get user by ID [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get user by ID (V2) instead.\nThis operation retrieves user object by User ID.",
"Anchor": "#get-user-by-id-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ListUsers",
"Name": "List users by workspace [DEPRECATED]",
"Description": "This action has been deprecated. Please use List users by workspace (V2) instead.\nThis operation retrieves the list of users for a given workspace.",
"Anchor": "#list-users-by-workspace-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ListWorkspaceTeams",
"Name": "List teams by workspace [DEPRECATED]",
"Description": "This action has been deprecated. Please use List teams by workspace (V2) instead.\nThis operation is used to view teams in the workspace or organization.",
"Anchor": "#list-teams-by-workspace-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnProjectCreated",
"Name": "When a project is created [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a project is created (V2) instead.\nTriggers when a new project is created.",
"Anchor": "#when-a-project-is-created-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnTaskCompleted",
"Name": "When a task is completed [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a task is completed (V2) instead.\nTriggers when an existing task is completed.",
"Anchor": "#when-a-task-is-completed-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnTaskCreated",
"Name": "When a task is created [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a task is created (V2) instead.\nTriggers when a new task is created.",
"Anchor": "#when-a-task-is-created-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "azuread",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../azuread/",
"Actions": [
{
"OperationId": "CheckMemberGroups",
"Name": "Check group membership [DEPRECATED]",
"Description": "This action has been deprecated. Please use Check group membership (V2) instead.\nIf the user is a member of the given group, the result will contain the given id. Otherwise the result will be empty.",
"Anchor": "#check-group-membership-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetMemberGroups",
"Name": "Get groups of a user [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get groups of a user (V2) instead.\nGet the groups a user is a member of.",
"Anchor": "#get-groups-of-a-user-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "azureblob",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../azureblob/",
"Actions": [
{
"OperationId": "CopyFile",
"Name": "Copy blob [DEPRECATED]",
"Description": "This action has been deprecated. Please use Copy blob (V2) instead.\nThis operation copies a blob. If blob is being deleted/renamed on server right after it was copied, connector may return HTTP 404 error by it's design. Please use a delay for 1 minute before deleting or renaming newly created blob. Chunk transfer is not supported in this action. If source and destination are present in same storage account, please use relative path. Otherwise, maximum size of a source for copy blob operation is 50 MB.",
"Anchor": "#copy-blob-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateBlockBlob",
"Name": "Create block blob [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create block blob (V2) instead.\nThis operation uploads a block blob to Azure Blob Storage.",
"Anchor": "#create-block-blob-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateFile",
"Name": "Create blob [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create blob (V2) instead.\nThis operation uploads a blob to Azure Blob Storage.",
"Anchor": "#create-blob-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateShareLinkByPath",
"Name": "Create SAS URI by path [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create SAS URI by path (V2) instead.\nThis operation creates a SAS link for a blob using the path.",
"Anchor": "#create-sas-uri-by-path-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DeleteFile",
"Name": "Delete blob [DEPRECATED]",
"Description": "This action has been deprecated. Please use Delete blob (V2) instead.\nThis operation deletes a blob.",
"Anchor": "#delete-blob-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ExtractFolderV2",
"Name": "Extract archive to folder [DEPRECATED]",
"Description": "This action has been deprecated. Please use Extract archive to folder (V2) instead.\nThis operation extracts an archive blob into a folder (example: .zip).",
"Anchor": "#extract-archive-to-folder-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetAccessPolicies",
"Name": "Get available access policies [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get available access policies (V2) instead.\nThis operation gets available shared access policies for a blob.",
"Anchor": "#get-available-access-policies-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetFileContent",
"Name": "Get blob content [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get blob content (V2) instead.\nThis operation retrieves blob contents using id.",
"Anchor": "#get-blob-content-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetFileContentByPath",
"Name": "Get blob content using path [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get blob content using path (V2) instead.\nThis operation retrieves blob contents using path.",
"Anchor": "#get-blob-content-using-path-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetFileMetadata",
"Name": "Get Blob Metadata [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get Blob Metadata (V2) instead.\nThis operation retrieves blob metadata using blob id.",
"Anchor": "#get-blob-metadata-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetFileMetadataByPath",
"Name": "Get Blob Metadata using path [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get Blob Metadata using path (V2) instead.\nThis operation retrieves blob metadata using path.",
"Anchor": "#get-blob-metadata-using-path-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ListFolderV2",
"Name": "Lists blobs [DEPRECATED]",
"Description": "This action has been deprecated. Please use Lists blobs (V2) instead.\nThis operation lists blobs in a container.",
"Anchor": "#lists-blobs-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ListRootFolderV2",
"Name": "Lists blobs in the root folder [DEPRECATED]",
"Description": "This action has been deprecated. Please use Lists blobs in the root folder (V2) instead.\nThis operation lists blobs in the Azure Blob Storage root folder.",
"Anchor": "#lists-blobs-in-the-root-folder-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnUpdatedFiles",
"Name": "When a blob is added or modified (properties only) [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a blob is added or modified (properties only) (V2) instead.\nThis operation triggers a flow when one or more blobs are added or modified in a container. This trigger will only fetch the file metadata. To get the file content, you can use the "Get file content" operation. The trigger does not fire if a file is added/updated in a subfolder. If it is required to trigger on subfolders, multiple triggers should be created.",
"Anchor": "#when-a-blob-is-added-or-modified-(properties-only)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "SetBlobTierByPath",
"Name": "Set blob tier by path [DEPRECATED]",
"Description": "This action has been deprecated. Please use Set blob tier by path (V2) instead.\nThis operation sets a tier for a block blob on a standard storage account using the path.",
"Anchor": "#set-blob-tier-by-path-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "UpdateFile",
"Name": "Update blob [DEPRECATED]",
"Description": "This action has been deprecated. Please use Update blob (V2) instead.\nThis operation updates a blob in Azure Blob Storage.",
"Anchor": "#update-blob-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "cognitiveservicestextanalytics",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../cognitiveservicestextanalytics/",
"Actions": [
{
"OperationId": "DetectEntities",
"Name": "Entities [DEPRECATED]",
"Description": "This action has been deprecated. Please use Named Entity Recognition (V4) instead.\nReturns a list of known entities and general named entities ("Person", "Location", "Organization" etc) in a given document.",
"Anchor": "#entities-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DetectEntitiesV2",
"Name": "Detect Entities (V2) [DEPRECATED]",
"Description": "This action has been deprecated. Please use Named Entity Recognition (V4) instead.\nReturns a list of known entities and general named entities ("Person", "Location", "Organization" etc) in a given document.",
"Anchor": "#detect-entities-(v2)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DetectLanguageV2",
"Name": "Detect Language [DEPRECATED]",
"Description": "This action has been deprecated. Please use Detect Language (V4) instead.\nReturns the detected language and a numeric score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true. A total of 120 languages are supported.",
"Anchor": "#detect-language-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DetectLanguageV2",
"Name": "Detect Language [DEPRECATED]",
"Description": "This action has been deprecated. Please use Detect Language (V4) instead.\nReturns the detected language and a numeric score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true. A total of 120 languages are supported.",
"Anchor": "#detect-language-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DetectLanguageV3",
"Name": "Detect Language (V2) [DEPRECATED]",
"Description": "This action has been deprecated. Please use Detect Language (V4) instead.\nReturns the detected language and a numeric score between 0 and 1 for each document. Scores close to 1 indicate 100% certainty that the identified language is true. A total of 120 languages are supported.",
"Anchor": "#detect-language-(v2)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DetectSentiment",
"Name": "Detect Sentiment [DEPRECATED]",
"Description": "This action has been deprecated. Please use Sentiment (V4) instead.\nReturns a numeric score between 0 and 1. Scores close to 1 indicate positive sentiment, while scores close to 0 indicate negative sentiment.",
"Anchor": "#detect-sentiment-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DetectSentiment",
"Name": "Detect Sentiment [DEPRECATED]",
"Description": "This action has been deprecated. Please use Sentiment (V4) instead.\nReturns a numeric score between 0 and 1. Scores close to 1 indicate positive sentiment, while scores close to 0 indicate negative sentiment. Currently, the following languages are supported: English, Spanish, French, Portuguese.",
"Anchor": "#detect-sentiment-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DetectSentimentV3",
"Name": "Detect Sentiment (V2) [DEPRECATED]",
"Description": "This action has been deprecated. Please use Sentiment (V4) instead.\nReturns a numeric score between 0 and 1 for each document. Scores close to 1 indicate positive sentiment, while scores close to 0 indicate negative sentiment.",
"Anchor": "#detect-sentiment-(v2)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "KeyPhrases",
"Name": "Key Phrases [DEPRECATED]",
"Description": "This action has been deprecated. Please use Key Phrases (V4) instead.\nReturns a list of strings denoting the key talking points in the input text.",
"Anchor": "#key-phrases-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "KeyPhrases",
"Name": "Key Phrases [DEPRECATED]",
"Description": "This action has been deprecated. Please use Key Phrases (V4) instead.\nReturns a list of strings denoting the key talking points in the input text. Currently, the following languages are supported: English, German, Spanish and Japanese.",
"Anchor": "#key-phrases-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "KeyPhrasesV3",
"Name": "Key Phrases (V2) [DEPRECATED]",
"Description": "This action has been deprecated. Please use Key Phrases (V4) instead.\nReturns a list of strings denoting the key talking points in the input text for each document.",
"Anchor": "#key-phrases-(v2)-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "azurecommunicationservicessms",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../azurecommunicationservicessms/",
"Actions": [
{
"OperationId": "SendSMS",
"Name": "Send SMS (deprecated) [DEPRECATED]",
"Description": "This action has been deprecated. Please use Send SMS instead.\nSends SMS using the phone numbers in your Azure Communication Services (deprecated)",
"Anchor": "#send-sms-(deprecated)-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "documentdb",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../documentdb/",
"Actions": [
{
"OperationId": "CreateDocument",
"Name": "Create or update document [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create or update document (V3) instead.\nCreate or update document. When creating a document in DocumentDB, the body must include an id property.",
"Anchor": "#create-or-update-document-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateDocumentV2",
"Name": "Create or update document (V2) [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create or update document (V3) instead.\nCreate or update document. When creating a document in DocumentDB, the body must include an id property.",
"Anchor": "#create-or-update-document-(v2)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateStoredProcedure",
"Name": "Create stored procedure [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create stored procedure (V2) instead.\nCreate stored procedure.",
"Anchor": "#create-stored-procedure-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DeleteDocument",
"Name": "Delete a document [DEPRECATED]",
"Description": "This action has been deprecated. Please use Delete a document (V2) instead.\nDelete a document.",
"Anchor": "#delete-a-document-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "DeleteStoredProcedure",
"Name": "Delete stored procedure [DEPRECATED]",
"Description": "This action has been deprecated. Please use Delete stored procedure (V2) instead.\nDelete stored procedure.",
"Anchor": "#delete-stored-procedure-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ExecuteStoredProcedure",
"Name": "Execute stored procedure [DEPRECATED]",
"Description": "This action has been deprecated. Please use Execute stored procedure (V2) instead.\nExecute stored procedure in specified collection.",
"Anchor": "#execute-stored-procedure-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetDocument",
"Name": "Get a document [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get a document (V2) instead.\nGet a document.",
"Anchor": "#get-a-document-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetDocuments",
"Name": "Get all documents [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get all documents (V3) instead.\nGet all documents.",
"Anchor": "#get-all-documents-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetDocumentsV2",
"Name": "Get all documents V2 [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get all documents (V3) instead.\nGet all documents V2.",
"Anchor": "#get-all-documents-v2-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetStoredProcedures",
"Name": "Get stored procedures [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get stored procedures (V2) instead.\nGet stored procedures in the specified collection.",
"Anchor": "#get-stored-procedures-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "QueryDocuments",
"Name": "Query documents [DEPRECATED]",
"Description": "This action has been deprecated. Please use Query documents V5 instead.\nQuery documents.",
"Anchor": "#query-documents-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "QueryDocumentsV2",
"Name": "Query documents V2 [DEPRECATED]",
"Description": "This action has been deprecated. Please use Query documents V5 instead.\nQuery documents V2.",
"Anchor": "#query-documents-v2-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "QueryDocumentsV3",
"Name": "Query documents V3 [DEPRECATED]",
"Description": "This action has been deprecated. Please use Query documents V5 instead.\nQuery documents V3.",
"Anchor": "#query-documents-v3-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "QueryDocumentsV4",
"Name": "Query documents V4 [DEPRECATED]",
"Description": "This action has been deprecated. Please use Query documents V5 instead.\nQuery documents V4.",
"Anchor": "#query-documents-v4-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ReplaceDocument",
"Name": "Replace a document [DEPRECATED]",
"Description": "This action has been deprecated. Please use Replace a document (V2) instead.\nReplace a document.",
"Anchor": "#replace-a-document-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ReplaceStoredProcedure",
"Name": "Replace stored procedure [DEPRECATED]",
"Description": "This action has been deprecated. Please use Replace stored procedure (V2) instead.\nReplace stored procedure.",
"Anchor": "#replace-stored-procedure-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "visualstudioteamservices",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../visualstudioteamservices/",
"Actions": [
{
"OperationId": "GetQueryResults",
"Name": "Get query results [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get query results instead.\nRetrieves the result of a work item query.",
"Anchor": "#get-query-results-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnWorkItemAssigned",
"Name": "When a work item is assigned [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a work item is assigned instead.\nTriggers a flow when a work item which matches provided criteria is assigned to the given user.",
"Anchor": "#when-a-work-item-is-assigned-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnWorkItemClosed",
"Name": "When a work item is closed [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a work item is closed instead.\nTriggers a flow when a work item which matches provided criteria is closed.",
"Anchor": "#when-a-work-item-is-closed-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnWorkItemCreated",
"Name": "When a work item is created [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a work item is created instead.\nTriggers a flow when a work item which matches provided criteria is created.",
"Anchor": "#when-a-work-item-is-created-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnWorkItemUpdated",
"Name": "When a work item is updated [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a work item is updated instead.\nTriggers a flow when a work item which matches provided criteria is updated.",
"Anchor": "#when-a-work-item-is-updated-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "azureiotcentral",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../azureiotcentral/",
"Actions": [
{
"OperationId": "Devices_ExecuteComponentCommand",
"Name": "Execute a device command (deprecated)",
"Description": "Execute a command on a device (deprecated).",
"Anchor": "#execute-a-device-command-(deprecated)",
"IsDeprecated": true
},
{
"OperationId": "Devices_Get",
"Name": "Get a device by ID (deprecated)",
"Description": "Get details about an existing device by device ID (deprecated).",
"Anchor": "#get-a-device-by-id-(deprecated)",
"IsDeprecated": true
},
{
"OperationId": "Devices_GetCloudProperties",
"Name": "Get device cloud properties (deprecated)",
"Description": "Get all cloud property values of a device by device ID (deprecated).",
"Anchor": "#get-device-cloud-properties-(deprecated)",
"IsDeprecated": true
},
{
"OperationId": "Devices_GetComponentTelemetryValue",
"Name": "Get device telemetry value (deprecated)",
"Description": "Get the last telemetry value from a device (deprecated).",
"Anchor": "#get-device-telemetry-value-(deprecated)",
"IsDeprecated": true
},
{
"OperationId": "Devices_GetProperties",
"Name": "Get device properties (deprecated)",
"Description": "Get all property values of a device by device ID (deprecated).",
"Anchor": "#get-device-properties-(deprecated)",
"IsDeprecated": true
},
{
"OperationId": "Devices_Remove",
"Name": "Delete a device (deprecated)",
"Description": "Delete an existing device by device ID (deprecated).",
"Anchor": "#delete-a-device-(deprecated)",
"IsDeprecated": true
},
{
"OperationId": "Devices_Set",
"Name": "Create or update a device (deprecated)",
"Description": "Create a new device or update an existing one by device ID (deprecated).",
"Anchor": "#create-or-update-a-device-(deprecated)",
"IsDeprecated": true
},
{
"OperationId": "Devices_UpdateCloudProperties",
"Name": "Update device cloud properties (deprecated)",
"Description": "Update all cloud property values of a device by device ID (deprecated).",
"Anchor": "#update-device-cloud-properties-(deprecated)",
"IsDeprecated": true
},
{
"OperationId": "Devices_UpdateProperties",
"Name": "Update device properties (deprecated)",
"Description": "Update all property values of a device by device ID (deprecated).",
"Anchor": "#update-device-properties-(deprecated)",
"IsDeprecated": true
}
]
},
{
"UniqueName": "azureloganalytics",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../azureloganalytics/",
"Actions": [
{
"OperationId": "RunOmsQuery",
"Name": "Run query and list results [DEPRECATED]",
"Description": "This action has been deprecated. Please use Run query and list results instead.\nRuns the query and returns the result as a set of lines which can be iterated over in the following connectors.",
"Anchor": "#run-query-and-list-results-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "VisualizeOmsQuery",
"Name": "Run query and visualize results [DEPRECATED]",
"Description": "This action has been deprecated. Please use Run query and visualize results instead.\nReturns the OMS query results as a chart of your choice.",
"Anchor": "#run-query-and-visualize-results-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "azurequeues",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../azurequeues/",
"Actions": [
{
"OperationId": "DeleteMessage",
"Name": "Delete message [DEPRECATED]",
"Description": "This action has been deprecated. Please use Delete message (V2) instead.\nDelete a specific message from the queue.",
"Anchor": "#delete-message-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetMessages",
"Name": "Get messages [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get messages (V2) instead.\nGet a specific set of messages from the queue. The messages will be hidden but remain on the queue until the delete action is used.",
"Anchor": "#get-messages-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ListQueues",
"Name": "List queues [DEPRECATED]",
"Description": "This action has been deprecated. Please use List queues (V2) instead.\nList all the queues for your storage account.",
"Anchor": "#list-queues-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnMessages",
"Name": "When there are messages in a queue [DEPRECATED]",
"Description": "This action has been deprecated. Please use When there are messages in a queue (V2) instead.\nTriggers any time there are messages in the queue, returning up to 32 messages. The messages will be hidden but remain on the queue until the delete action is used.",
"Anchor": "#when-there-are-messages-in-a-queue-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnMessageThresholdReached",
"Name": "When a specified number of messages are in a given queue [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a specified number of messages are in a given queue (V2) instead.\nTriggers when a specified number of messages are in the given queue.",
"Anchor": "#when-a-specified-number-of-messages-are-in-a-given-queue-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "PutMessage",
"Name": "Put a message on a queue [DEPRECATED]",
"Description": "This action has been deprecated. Please use Put a message on a queue (V2) instead.\nAdds a message to the given queue.",
"Anchor": "#put-a-message-on-a-queue-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "PutQueue",
"Name": "Create a new queue [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create a new queue (V2) instead.\nAdds a queue to your account.",
"Anchor": "#create-a-new-queue-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "basecamp",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../basecamp/",
"Actions": [
{
"OperationId": "DeleteObject",
"Name": "Delete an object [DEPRECATED]",
"Description": "Put an object in the trash",
"Anchor": "#delete-an-object-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "bingmaps",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../bingmaps/",
"Actions": [
{
"OperationId": "GetMap",
"Name": "Get static map [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get static map instead.\nGet static map.",
"Anchor": "#get-static-map-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetRouteV2",
"Name": "Get route [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get route instead.\nCalculate a route using waypoints.",
"Anchor": "#get-route-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetRouteV2",
"Name": "Get route [DEPRECATED]",
"Description": "This action has been deprecated. Please use Get route instead.\nCalculate a route using waypoints.",
"Anchor": "#get-route-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "bitly",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../bitly/",
"Actions": [
{
"OperationId": "CreateBitlink",
"Name": "Create a bitlink [DEPRECATED]",
"Description": "This action has been deprecated. Please use Create a bitlink (V2) instead.\nCreate a shortened Bitlink.",
"Anchor": "#create-a-bitlink-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnBitlinkCreated",
"Name": "When a Bitlink is created [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a Bitlink is created (V2) instead.\nWhen a Bitlink is created.",
"Anchor": "#when-a-bitlink-is-created-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "box",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../box/",
"Actions": [
{
"OperationId": "OnNewFile",
"Name": "When a file is created [DEPRECATED]",
"Description": "Triggers a flow when a new file is created in a Box folder. The trigger does not fire if a file is added/updated in a subfolder. If it is required to trigger on subfolders, multiple triggers should be created.",
"Anchor": "#when-a-file-is-created-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnNewFiles",
"Name": "When a file is created (properties only) [DEPRECATED]",
"Description": "This action has been deprecated. Please use When a file is created (properties only) (V2) instead.\nThis operation triggers a flow when a new file is created in a folder. The trigger does not fire if a file is added/updated in a subfolder. If it is required to trigger on subfolders, multiple triggers should be created.",
"Anchor": "#when-a-file-is-created-(properties-only)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "OnUpdatedFile",
"Name": "When a file is modified [DEPRECATED]",
"Description": "Triggers a flow when a file is modified in a Box folder. The trigger does not fire if a file is added/updated in a subfolder. If it is required to trigger on subfolders, multiple triggers should be created.",
"Anchor": "#when-a-file-is-modified-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "chainpointnode",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../chainpointnode/",
"Actions": [
{
"OperationId": "GetProof",
"Name": "Retrieve a proof [DEPRECATED]",
"Description": "Retrieve a Chainpoint proof",
"Anchor": "#retrieve-a-proof-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "SHA256FromString",
"Name": "Generate a SHA256 Hash from a string [DEPRECATED]",
"Description": "Generate a SHA256 Hash for the given string",
"Anchor": "#generate-a-sha256-hash-from-a-string-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "SubmitHash",
"Name": "Submit a hash [DEPRECATED]",
"Description": "Submit a hash to be anchored using Chainpoint",
"Anchor": "#submit-a-hash-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "VerifyProof",
"Name": "Verify a proof [DEPRECATED]",
"Description": "Verify that a Chainpoint proof is valid",
"Anchor": "#verify-a-proof-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "connect2all",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../connect2all/",
"Actions": [
{
"OperationId": "GetCsvDocument",
"Name": "Get Csv (deprecated) [DEPRECATED]",
"Description": "Get data based on passed configuration and returns the data in the CSV format set in the configuration (deprecated)",
"Anchor": "#get-csv-(deprecated)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetCsvDocumentById",
"Name": "Get Csv by Id (deprecated) [DEPRECATED]",
"Description": "Get data by SystemId based on passed configuration and returns the data in the CSV format set in the configuration (deprecated)",
"Anchor": "#get-csv-by-id-(deprecated)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetCsvDocumentByIdWithMetadata",
"Name": "Get Csv by Id with metadata (deprecated) [DEPRECATED]",
"Description": "Get data by Id with metadata based on passed configuration and returns the data in the CSV format set in the configuration (deprecated)",
"Anchor": "#get-csv-by-id-with-metadata-(deprecated)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetCsvDocumentWithMetadata",
"Name": "Get Csv with metadata (deprecated) [DEPRECATED]",
"Description": "Get data with metadata based on passed configuration and returns the data in the CSV format set in the configuration (deprecated)",
"Anchor": "#get-csv-with-metadata-(deprecated)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetXmlDocument",
"Name": "Get Xml (deprecated) [DEPRECATED]",
"Description": "Get data based on passed configuration and returns the data in (deprecated) the XML format set in the configuration",
"Anchor": "#get-xml-(deprecated)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetXmlDocumentById",
"Name": "Get Xml by Id (deprecated) [DEPRECATED]",
"Description": "Get data by SystemId based on passed configuration and returns the data in the XML format set in the configuration (deprecated)",
"Anchor": "#get-xml-by-id-(deprecated)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetXmlDocumentByIdWithMetadata",
"Name": "Get Xml by Id with metadata (deprecated) [DEPRECATED]",
"Description": "Get data by Id with metadata based on passed configuration and returns the data in the XML format set in the configuration (deprecated)",
"Anchor": "#get-xml-by-id-with-metadata-(deprecated)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "GetXmlDocumentWithMetadata",
"Name": "Get Xml with metadata (deprecated) [DEPRECATED]",
"Description": "Get data with metadata based on passed configuration and returns the data in the XML format set in the configuration (deprecated)",
"Anchor": "#get-xml-with-metadata-(deprecated)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "PostTransformCsv",
"Name": "Process Csv (deprecated) [DEPRECATED]",
"Description": "Imports and transforms CSV into Business Central data using a specific configuration (deprecated)",
"Anchor": "#process-csv-(deprecated)-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "PostTransformXml",
"Name": "Process Xml (deprecated) [DEPRECATED]",
"Description": "Imports and transforms XML into Business Central data using a specific configuration (deprecated)",
"Anchor": "#process-xml-(deprecated)-[deprecated]",
"IsDeprecated": true
}
]
},
{
"UniqueName": "blockchaincorda",
"DocumentationUrl": "https://docs.microsoft.com/en-us/connectors/connector-reference/../blockchaincorda/",
"Actions": [
{
"OperationId": "CreateContractActionRequest",
"Name": "Create Contract Action message [DEPRECATED]",
"Description": "Create Contract Action message.",
"Anchor": "#create-contract-action-message-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateContractReadRequest",
"Name": "Read state [DEPRECATED]",
"Description": "Read state.",
"Anchor": "#read-state-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "CreateContractRequest",
"Name": "Create Contract message [DEPRECATED]",
"Description": "Create Contract message.",
"Anchor": "#create-contract-message-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ParseContractFunctionInvocationResponse",
"Name": "Parse the contract function invocation response [DEPRECATED]",
"Description": "Parse the contract function invocation response.",
"Anchor": "#parse-the-contract-function-invocation-response-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ParseContractMessageResponse",
"Name": "Parse the contract message response [DEPRECATED]",
"Description": "Parse the contract message response.",
"Anchor": "#parse-the-contract-message-response-[deprecated]",
"IsDeprecated": true
},
{
"OperationId": "ParseCreateContractActionResponse",
"Name": "Parse the create contract action response [DEPRECATED]",
"Description": "Parse the create contract action response.",
"Anchor": "#parse-the-create-contract-action-response-[deprecated]",
"IsDeprecated": true