@devrev-computer/skills 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (179) hide show
  1. package/README.md +37 -0
  2. package/bin/install.mjs +158 -0
  3. package/package.json +33 -0
  4. package/skills/account-evaluation/account-evaluation.md +64 -0
  5. package/skills/account-research/account-research.md +323 -0
  6. package/skills/account-research/references/signals-guide.md +52 -0
  7. package/skills/create-workflow-template/create-workflow-template.md +1091 -0
  8. package/skills/create-workflow-template/examples/3592-Generate rca from pia-template.json +1 -0
  9. package/skills/create-workflow-template/examples/4392-Async opportunity review agent-template.json +1 -0
  10. package/skills/create-workflow-template/examples/4441-Ticket escalator from customer message-template.json +1 -0
  11. package/skills/create-workflow-template/examples/4505-Auto-update issue tcd as end of sprint date-template.json +1 -0
  12. package/skills/create-workflow-template/examples/5040-Devrevu - enablement journey - poc emails-template.json +1 -0
  13. package/skills/create-workflow-template/examples/5158-Devrevu - enablement journey - mailing for non enablement journey users-template.json +1 -0
  14. package/skills/create-workflow-template/examples/5216-Account segment missing notification-template.json +1 -0
  15. package/skills/create-workflow-template/examples/working-csat-score-on-ticket-resolved.json +1 -0
  16. package/skills/create-workflow-template/examples/working-enhancement-replace-agent.json +1 -0
  17. package/skills/create-workflow-template/examples/working-invoke-code-sample.json +1 -0
  18. package/skills/create-workflow-template/examples/working-loop-variable-sample.json +1 -0
  19. package/skills/create-workflow-template/operations/actions.md +2919 -0
  20. package/skills/create-workflow-template/operations/blockings.md +38 -0
  21. package/skills/create-workflow-template/operations/controls.md +108 -0
  22. package/skills/create-workflow-template/operations/schema-index.md +166 -0
  23. package/skills/create-workflow-template/operations/schemas/account_created.md +58 -0
  24. package/skills/create-workflow-template/operations/schemas/account_updated.md +73 -0
  25. package/skills/create-workflow-template/operations/schemas/add_comment.md +29 -0
  26. package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_started.md +33 -0
  27. package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_status_updated.md +35 -0
  28. package/skills/create-workflow-template/operations/schemas/article_created.md +96 -0
  29. package/skills/create-workflow-template/operations/schemas/article_updated.md +135 -0
  30. package/skills/create-workflow-template/operations/schemas/ask_ai.md +11 -0
  31. package/skills/create-workflow-template/operations/schemas/classify_object.md +22 -0
  32. package/skills/create-workflow-template/operations/schemas/contact_created.md +43 -0
  33. package/skills/create-workflow-template/operations/schemas/contact_updated.md +65 -0
  34. package/skills/create-workflow-template/operations/schemas/conversation_created.md +108 -0
  35. package/skills/create-workflow-template/operations/schemas/conversation_sla_tracker_updated.md +46 -0
  36. package/skills/create-workflow-template/operations/schemas/conversation_updated.md +130 -0
  37. package/skills/create-workflow-template/operations/schemas/convert_conversation_to_ticket.md +13 -0
  38. package/skills/create-workflow-template/operations/schemas/create_account.md +62 -0
  39. package/skills/create-workflow-template/operations/schemas/create_article.md +79 -0
  40. package/skills/create-workflow-template/operations/schemas/create_brand.md +42 -0
  41. package/skills/create-workflow-template/operations/schemas/create_contact.md +65 -0
  42. package/skills/create-workflow-template/operations/schemas/create_dm.md +53 -0
  43. package/skills/create-workflow-template/operations/schemas/create_enhancement.md +63 -0
  44. package/skills/create-workflow-template/operations/schemas/create_incident.md +136 -0
  45. package/skills/create-workflow-template/operations/schemas/create_issue.md +150 -0
  46. package/skills/create-workflow-template/operations/schemas/create_meeting.md +105 -0
  47. package/skills/create-workflow-template/operations/schemas/create_opportunity.md +123 -0
  48. package/skills/create-workflow-template/operations/schemas/create_ticket.md +184 -0
  49. package/skills/create-workflow-template/operations/schemas/csat_response_received.md +73 -0
  50. package/skills/create-workflow-template/operations/schemas/dev_user_created.md +54 -0
  51. package/skills/create-workflow-template/operations/schemas/dev_user_updated.md +99 -0
  52. package/skills/create-workflow-template/operations/schemas/enhancement_created.md +46 -0
  53. package/skills/create-workflow-template/operations/schemas/enhancement_updated.md +89 -0
  54. package/skills/create-workflow-template/operations/schemas/evaluate_sentiment.md +14 -0
  55. package/skills/create-workflow-template/operations/schemas/execute_metric_action.md +11 -0
  56. package/skills/create-workflow-template/operations/schemas/feature_created.md +40 -0
  57. package/skills/create-workflow-template/operations/schemas/for_each.md +45 -0
  58. package/skills/create-workflow-template/operations/schemas/get_account.md +59 -0
  59. package/skills/create-workflow-template/operations/schemas/get_airdrop_sync_unit.md +32 -0
  60. package/skills/create-workflow-template/operations/schemas/get_brand.md +40 -0
  61. package/skills/create-workflow-template/operations/schemas/get_complete_enhancement_details.md +13 -0
  62. package/skills/create-workflow-template/operations/schemas/get_conversation.md +120 -0
  63. package/skills/create-workflow-template/operations/schemas/get_customer.md +60 -0
  64. package/skills/create-workflow-template/operations/schemas/get_enhancement.md +66 -0
  65. package/skills/create-workflow-template/operations/schemas/get_feature.md +56 -0
  66. package/skills/create-workflow-template/operations/schemas/get_incident.md +85 -0
  67. package/skills/create-workflow-template/operations/schemas/get_issue.md +117 -0
  68. package/skills/create-workflow-template/operations/schemas/get_kg_schema.md +23 -0
  69. package/skills/create-workflow-template/operations/schemas/get_meeting.md +87 -0
  70. package/skills/create-workflow-template/operations/schemas/get_metric_trackers.md +20 -0
  71. package/skills/create-workflow-template/operations/schemas/get_node_schema.md +29 -0
  72. package/skills/create-workflow-template/operations/schemas/get_opportunity.md +93 -0
  73. package/skills/create-workflow-template/operations/schemas/get_org_user.md +57 -0
  74. package/skills/create-workflow-template/operations/schemas/get_org_user_preference.md +40 -0
  75. package/skills/create-workflow-template/operations/schemas/get_part.md +55 -0
  76. package/skills/create-workflow-template/operations/schemas/get_self.md +54 -0
  77. package/skills/create-workflow-template/operations/schemas/get_session_details.md +45 -0
  78. package/skills/create-workflow-template/operations/schemas/get_sprint_board.md +103 -0
  79. package/skills/create-workflow-template/operations/schemas/get_ticket.md +136 -0
  80. package/skills/create-workflow-template/operations/schemas/get_workspace.md +21 -0
  81. package/skills/create-workflow-template/operations/schemas/go_back.md +13 -0
  82. package/skills/create-workflow-template/operations/schemas/http.md +38 -0
  83. package/skills/create-workflow-template/operations/schemas/hybrid_search.md +144 -0
  84. package/skills/create-workflow-template/operations/schemas/if_else.md +16 -0
  85. package/skills/create-workflow-template/operations/schemas/incident_created.md +88 -0
  86. package/skills/create-workflow-template/operations/schemas/incident_updated.md +126 -0
  87. package/skills/create-workflow-template/operations/schemas/init_variable.md +67 -0
  88. package/skills/create-workflow-template/operations/schemas/invoice_created.md +21 -0
  89. package/skills/create-workflow-template/operations/schemas/invoice_updated.md +41 -0
  90. package/skills/create-workflow-template/operations/schemas/invoke_code.md +132 -0
  91. package/skills/create-workflow-template/operations/schemas/issue_created.md +105 -0
  92. package/skills/create-workflow-template/operations/schemas/issue_sla_tracker_updated.md +46 -0
  93. package/skills/create-workflow-template/operations/schemas/issue_updated.md +172 -0
  94. package/skills/create-workflow-template/operations/schemas/link_incident_with_issue.md +14 -0
  95. package/skills/create-workflow-template/operations/schemas/link_ticket_with_issue.md +14 -0
  96. package/skills/create-workflow-template/operations/schemas/list_enhancements.md +74 -0
  97. package/skills/create-workflow-template/operations/schemas/list_issues.md +108 -0
  98. package/skills/create-workflow-template/operations/schemas/list_sessions.md +79 -0
  99. package/skills/create-workflow-template/operations/schemas/list_sprint.md +29 -0
  100. package/skills/create-workflow-template/operations/schemas/list_web_sessions.md +87 -0
  101. package/skills/create-workflow-template/operations/schemas/loop_over_accounts.md +106 -0
  102. package/skills/create-workflow-template/operations/schemas/loop_over_articles.md +126 -0
  103. package/skills/create-workflow-template/operations/schemas/loop_over_customers.md +88 -0
  104. package/skills/create-workflow-template/operations/schemas/loop_over_dev_users.md +75 -0
  105. package/skills/create-workflow-template/operations/schemas/loop_over_enhancements.md +112 -0
  106. package/skills/create-workflow-template/operations/schemas/loop_over_incidents.md +113 -0
  107. package/skills/create-workflow-template/operations/schemas/loop_over_issues.md +217 -0
  108. package/skills/create-workflow-template/operations/schemas/loop_over_meetings.md +150 -0
  109. package/skills/create-workflow-template/operations/schemas/loop_over_opportunity.md +161 -0
  110. package/skills/create-workflow-template/operations/schemas/loop_over_sprints.md +50 -0
  111. package/skills/create-workflow-template/operations/schemas/loop_over_tickets.md +203 -0
  112. package/skills/create-workflow-template/operations/schemas/manual_trigger.md +11 -0
  113. package/skills/create-workflow-template/operations/schemas/meeting_created.md +116 -0
  114. package/skills/create-workflow-template/operations/schemas/meeting_updated.md +152 -0
  115. package/skills/create-workflow-template/operations/schemas/oasis_sql_execute.md +11 -0
  116. package/skills/create-workflow-template/operations/schemas/opportunity_created.md +92 -0
  117. package/skills/create-workflow-template/operations/schemas/opportunity_updated.md +124 -0
  118. package/skills/create-workflow-template/operations/schemas/pick_user.md +16 -0
  119. package/skills/create-workflow-template/operations/schemas/question_answer_created.md +44 -0
  120. package/skills/create-workflow-template/operations/schemas/question_answer_updated.md +75 -0
  121. package/skills/create-workflow-template/operations/schemas/recall_chats.md +13 -0
  122. package/skills/create-workflow-template/operations/schemas/router.md +15 -0
  123. package/skills/create-workflow-template/operations/schemas/send_notification.md +19 -0
  124. package/skills/create-workflow-template/operations/schemas/set_variable.md +67 -0
  125. package/skills/create-workflow-template/operations/schemas/sleep_for.md +12 -0
  126. package/skills/create-workflow-template/operations/schemas/sleep_until.md +17 -0
  127. package/skills/create-workflow-template/operations/schemas/sprint_updated.md +37 -0
  128. package/skills/create-workflow-template/operations/schemas/suggest_part.md +14 -0
  129. package/skills/create-workflow-template/operations/schemas/task_updated.md +79 -0
  130. package/skills/create-workflow-template/operations/schemas/test_example.md +16 -0
  131. package/skills/create-workflow-template/operations/schemas/ticket_created.md +136 -0
  132. package/skills/create-workflow-template/operations/schemas/ticket_sla_tracker_updated.md +46 -0
  133. package/skills/create-workflow-template/operations/schemas/ticket_updated.md +198 -0
  134. package/skills/create-workflow-template/operations/schemas/timeline_comment_created.md +70 -0
  135. package/skills/create-workflow-template/operations/schemas/update_account.md +68 -0
  136. package/skills/create-workflow-template/operations/schemas/update_article.md +95 -0
  137. package/skills/create-workflow-template/operations/schemas/update_brand.md +44 -0
  138. package/skills/create-workflow-template/operations/schemas/update_contact.md +53 -0
  139. package/skills/create-workflow-template/operations/schemas/update_conversation.md +149 -0
  140. package/skills/create-workflow-template/operations/schemas/update_enhancement.md +64 -0
  141. package/skills/create-workflow-template/operations/schemas/update_incident.md +156 -0
  142. package/skills/create-workflow-template/operations/schemas/update_issue.md +173 -0
  143. package/skills/create-workflow-template/operations/schemas/update_meeting.md +114 -0
  144. package/skills/create-workflow-template/operations/schemas/update_opportunity.md +137 -0
  145. package/skills/create-workflow-template/operations/schemas/update_question_answer.md +60 -0
  146. package/skills/create-workflow-template/operations/schemas/update_ticket.md +188 -0
  147. package/skills/create-workflow-template/operations/schemas/watch_ticket_for_updates.md +225 -0
  148. package/skills/create-workflow-template/operations/schemas/web_search.md +17 -0
  149. package/skills/create-workflow-template/operations/schemas/while.md +24 -0
  150. package/skills/create-workflow-template/operations/schemas/widget_created.md +75 -0
  151. package/skills/create-workflow-template/operations/schemas/widget_updated.md +98 -0
  152. package/skills/create-workflow-template/operations/schemas/workspace_created.md +20 -0
  153. package/skills/create-workflow-template/operations/triggers.md +1583 -0
  154. package/skills/customer-brief/customer-brief.md +66 -0
  155. package/skills/deal-review-meddpicc/deal-review-meddpicc.md +58 -0
  156. package/skills/next-step-for-opportunity/next-step-for-opportunity.md +55 -0
  157. package/skills/opportunity-feature-prioritizer/SKILL.md +183 -0
  158. package/skills/sales-call-plan-coach/sales-call-plan-coach.md +73 -0
  159. package/skills/sales-context/sales-context.md +44 -0
  160. package/skills/sales-search-and-lookup/sales-search-and-lookup.md +58 -0
  161. package/skills/skill-creator/SKILL.md +570 -0
  162. package/skills/skill-creator/agents/analyzer.md +274 -0
  163. package/skills/skill-creator/agents/comparator.md +202 -0
  164. package/skills/skill-creator/agents/grader.md +223 -0
  165. package/skills/skill-creator/assets/eval_review.html +146 -0
  166. package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  167. package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  168. package/skills/skill-creator/references/schemas.md +430 -0
  169. package/skills/skill-creator/references/tool-patterns.md +290 -0
  170. package/skills/skill-creator/scripts/__init__.py +0 -0
  171. package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  172. package/skills/skill-creator/scripts/generate_report.py +326 -0
  173. package/skills/skill-creator/scripts/improve_description.py +247 -0
  174. package/skills/skill-creator/scripts/package_skill.py +136 -0
  175. package/skills/skill-creator/scripts/quick_validate.py +103 -0
  176. package/skills/skill-creator/scripts/run_eval.py +310 -0
  177. package/skills/skill-creator/scripts/run_loop.py +328 -0
  178. package/skills/skill-creator/scripts/utils.py +47 -0
  179. package/skills/trace-diagnosis/trace-diagnosis.md +186 -0
@@ -0,0 +1,2919 @@
1
+ # Action Operations (245)
2
+
3
+ > Executable steps that perform work within a workflow.
4
+
5
+
6
+ ## 1. Add Comment
7
+
8
+ - **Slug:** `add_comment`
9
+ - **Namespace:** `devrev`
10
+ - **ID:** `operation-devrev.add_comment`
11
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
12
+
13
+ Adds a comment to an object.
14
+
15
+ ### Input (`input`)
16
+
17
+ - `object` (id) **(required)** — ID of the object
18
+ - ID types: `account`, `capability`, `conversation`, `enhancement`, `feature`, `incident`, `issue`, `linkable`, `opportunity`, `product`, `meeting`, `revo`, `revu`, `runnable`, `ticket`, `comment`, `dm`, `article`
19
+ - `body` (text) **(required)** — Comment body
20
+ - `visibility` (enum) — Specifies the entry's visibility. 'Internal' limits visibility to the Dev organization, 'External' allows visibility to both the Dev organization and its customers, and 'Private' limits visibility to specified users only. Defaults to 'External' if unspecified.
21
+ - Allowed: `external`, `internal`, `private`
22
+ - Default: `external`
23
+
24
+ ### Output (`output`)
25
+
26
+ - `id` (id) **(required)** — ID of the comment
27
+ - ID types: `comment`
28
+ - `created_by` (composite) **(required)** — ID of the user who created the comment
29
+ - `type` (enum) **(required)** — Type of the user
30
+ - Allowed: `dev_user`, `sys_user`, `rev_user`, `service_account`
31
+ - `id` (id) **(required)** — ID of the user
32
+ - ID types: `devu`, `sysu`, `revu`, `svcacc`
33
+ - `display_id` (text) **(required)** — Display ID of the user
34
+ - `created_by_agent` (composite) — ID of the service account who created the comment on behalf of the user
35
+ - `id` (id) — ID of the service account
36
+ - ID types: `svcacc`
37
+ - `display_id` (text) **(required)** — Display ID of the agent
38
+
39
+ ---
40
+
41
+ ## 2. Agent Callback
42
+
43
+ - **Slug:** `agent_callback`
44
+ - **Namespace:** `devrev`
45
+ - **ID:** `operation-devrev.agent_callback`
46
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
47
+ - **Scopes:** `ai_agent:execute`
48
+
49
+ Takes the Output of the workflow and returns it to the agent
50
+
51
+ ### Input (`input`)
52
+
53
+ - `agent_session_id` (id) **(required)** — The ID of the agent to send the output to
54
+ - ID types: `ai_agent_session`
55
+ - `skill_call_id` (text) **(required)** — The ID of the skill call corresponding to the workflow
56
+ - `skill_name` (text) **(required)** — The name of the skill call corresponding to the workflow
57
+ - `output` (struct) **(required)** — The output to return to the agent
58
+
59
+ ---
60
+
61
+ ## 3. AI Feedback
62
+
63
+ - **Slug:** `ai_feedback`
64
+ - **Namespace:** `devrev`
65
+ - **ID:** `operation-devrev.ai_feedback`
66
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
67
+
68
+ Accepts and logs the feedback on the AI operation done in this workflow to gain insights and improve accuracy of the AI operation
69
+
70
+ ### Input (`input`)
71
+
72
+ - `session_id` (tokens) **(required)** — Session ID returned by AI operation
73
+ - `request_id` (tokens) — Request ID returned by AI operation
74
+ - `feedback_type` (enum) **(required)** — Type of the feedback
75
+ - Allowed: `binary`
76
+ - Default: `binary`
77
+ - `binary_feedback` (bool) **(required)** — Do you agree with the AI operation's output?
78
+ - `feedback_reason` (text) — Reason for the given feedback
79
+
80
+ ---
81
+
82
+ ## 4. Ask Agent
83
+
84
+ - **Slug:** `ask_agent`
85
+ - **Namespace:** `devrev`
86
+ - **ID:** `operation-devrev.ask_agent`
87
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
88
+ - **Scopes:** `ai_agent:read`
89
+
90
+ Ask an agent for information
91
+
92
+ ---
93
+
94
+ ## 5. Ask AI
95
+
96
+ - **Slug:** `ask_ai`
97
+ - **Namespace:** `devrev`
98
+ - **ID:** `operation-devrev.ask_ai`
99
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
100
+
101
+ AI-powered action node for transforming, analyzing, and generating text content. Use Normal mode for everyday tasks like classification, simple decisions. Use Reasoning mode for advanced analysis.
102
+
103
+ ### Input (`input`)
104
+
105
+ - `ai_input` (text) **(required)** — The input prompt based on which the AI response is generated
106
+
107
+ ### Output (`output`)
108
+
109
+ - `ai_output` (text) — Output string from the AI Action node
110
+
111
+ ---
112
+
113
+ ## 6. Ask Options
114
+
115
+ - **Slug:** `ask_options`
116
+ - **Namespace:** `devrev`
117
+ - **ID:** `operation-devrev.ask_options`
118
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
119
+
120
+ Send buttons and content to a user
121
+
122
+ ---
123
+
124
+ ## 7. Classify Object
125
+
126
+ - **Slug:** `classify_object`
127
+ - **Namespace:** `devrev`
128
+ - **ID:** `operation-devrev.classify_object`
129
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
130
+
131
+ Classifies an object into a set of customisable categories
132
+
133
+ ### Input (`input`)
134
+
135
+ - `object_id` (id) **(required)** — ID of the object
136
+ - ID types: `issue`, `ticket`, `conversation`, `enhancement`
137
+ - `object_type` (enum) **(required)** — Type of the object
138
+ - Allowed: `issue`, `ticket`, `conversation`, `enhancement`
139
+ - Default: `issue`
140
+ - `categories` (array) **(required)** — Specify the categories into which the object should be classified
141
+ - `name` (tokens) **(required)** — Name of the category into which the object can be classified
142
+ - `description` (text) — Describe which type of objects should be categorized into this category
143
+ - `guidelines` (text) — Specify any special instructions or examples that should be used by the classifier
144
+
145
+ ### Output (`output`)
146
+
147
+ - `category` (text) — Output category from the object classification action node
148
+ - `justification` (text) — Output category justification from the object classification action node
149
+ - `session_id` (tokens) **(required)** — Session ID generated for this AI operation
150
+
151
+ ---
152
+
153
+ ## 8. Convert Conversation To Ticket
154
+
155
+ - **Slug:** `convert_conversation_to_ticket`
156
+ - **Namespace:** `devrev`
157
+ - **ID:** `operation-devrev.convert_conversation_to_ticket`
158
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
159
+ - **Scopes:** `conversation:read`, `link:read`
160
+
161
+ Converts a conversation to a ticket. Only Conversations from PLuG and Slack can be converted to tickets.
162
+
163
+ ### Input (`input`)
164
+
165
+ - `conversation_id` (id) **(required)** — ID of the conversation to be converted to a ticket.
166
+ - ID types: `conversation`
167
+
168
+ ### Output (`output`)
169
+
170
+ - `ticket_id` (id) **(required)** — ID of the ticket created from the conversation.
171
+ - ID types: `ticket`
172
+
173
+ ---
174
+
175
+ ## 9. Create AAI Project
176
+
177
+ - **Slug:** `create_aai_proj`
178
+ - **Namespace:** `custom_object`
179
+ - **ID:** `operation-custom_object.create_aai_proj`
180
+
181
+ Creates AAI Project
182
+
183
+ ---
184
+
185
+ ## 10. Create Abc
186
+
187
+ - **Slug:** `create_abc`
188
+ - **Namespace:** `custom_object`
189
+ - **ID:** `operation-custom_object.create_abc`
190
+ - **Tags:** HIPAA, ALPHA
191
+
192
+ Creates Abc
193
+
194
+ ---
195
+
196
+ ## 11. Create Account
197
+
198
+ - **Slug:** `create_account`
199
+ - **Namespace:** `devrev`
200
+ - **ID:** `operation-devrev.create_account`
201
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
202
+ - **Scopes:** `account:write`
203
+
204
+ Creates an account
205
+
206
+ ---
207
+
208
+ ## 12. Create Ai Agent Session Metrics
209
+
210
+ - **Slug:** `create_ai_agent_session_metrics`
211
+ - **Namespace:** `custom_object`
212
+ - **ID:** `operation-custom_object.create_ai_agent_session_metrics`
213
+
214
+ Creates Ai Agent Session Metrics
215
+
216
+ ---
217
+
218
+ ## 13. Create Alert
219
+
220
+ - **Slug:** `create_alert`
221
+ - **Namespace:** `custom_object`
222
+ - **ID:** `operation-custom_object.create_alert`
223
+
224
+ Creates Alert
225
+
226
+ ---
227
+
228
+ ## 14. Create Article
229
+
230
+ - **Slug:** `create_article`
231
+ - **Namespace:** `devrev`
232
+ - **ID:** `operation-devrev.create_article`
233
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
234
+ - **Scopes:** `article:write`
235
+
236
+ Creates an article
237
+
238
+ ---
239
+
240
+ ## 15. Create Pending Record
241
+
242
+ - **Slug:** `create_as_pend`
243
+ - **Namespace:** `custom_object`
244
+ - **ID:** `operation-custom_object.create_as_pend`
245
+
246
+ Creates Pending Record
247
+
248
+ ---
249
+
250
+ ## 16. Create Asagentlog
251
+
252
+ - **Slug:** `create_asagentlog`
253
+ - **Namespace:** `custom_object`
254
+ - **ID:** `operation-custom_object.create_asagentlog`
255
+
256
+ Creates Asagentlog
257
+
258
+ ---
259
+
260
+ ## 17. Create Asownerlog
261
+
262
+ - **Slug:** `create_asownerlog`
263
+ - **Namespace:** `custom_object`
264
+ - **ID:** `operation-custom_object.create_asownerlog`
265
+ - **Tags:** HIPAA, ALPHA
266
+
267
+ Creates Asownerlog
268
+
269
+ ---
270
+
271
+ ## 18. Create Asreport
272
+
273
+ - **Slug:** `create_asreport`
274
+ - **Namespace:** `custom_object`
275
+ - **ID:** `operation-custom_object.create_asreport`
276
+
277
+ Creates Asreport
278
+
279
+ ---
280
+
281
+ ## 19. Create Asset
282
+
283
+ - **Slug:** `create_asset`
284
+ - **Namespace:** `custom_object`
285
+ - **ID:** `operation-custom_object.create_asset`
286
+
287
+ Creates Asset
288
+
289
+ ---
290
+
291
+ ## 20. Create Campaigned
292
+
293
+ - **Slug:** `create_campaigned`
294
+ - **Namespace:** `custom_object`
295
+ - **ID:** `operation-custom_object.create_campaigned`
296
+
297
+ Creates Campaigned
298
+
299
+ ---
300
+
301
+ ## 21. Create Chameleon Survey
302
+
303
+ - **Slug:** `create_chameleon_survey`
304
+ - **Namespace:** `custom_object`
305
+ - **ID:** `operation-custom_object.create_chameleon_survey`
306
+
307
+ Creates Chameleon Survey
308
+
309
+ ---
310
+
311
+ ## 22. Create Change
312
+
313
+ - **Slug:** `create_change`
314
+ - **Namespace:** `custom_object`
315
+ - **ID:** `operation-custom_object.create_change`
316
+
317
+ Creates Change
318
+
319
+ ---
320
+
321
+ ## 23. Create Chat
322
+
323
+ - **Slug:** `create_chat`
324
+ - **Namespace:** `custom_object`
325
+ - **ID:** `operation-custom_object.create_chat`
326
+
327
+ Creates Chat
328
+
329
+ ---
330
+
331
+ ## 24. Create Code Change
332
+
333
+ - **Slug:** `create_code_change`
334
+ - **Namespace:** `custom_object`
335
+ - **ID:** `operation-custom_object.create_code_change`
336
+ - **Tags:** HIPAA
337
+
338
+ Creates Code Change
339
+
340
+ ---
341
+
342
+ ## 25. Create Contact
343
+
344
+ - **Slug:** `create_contact`
345
+ - **Namespace:** `devrev`
346
+ - **ID:** `operation-devrev.create_contact`
347
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
348
+ - **Scopes:** `rev_user:read`
349
+
350
+ Creates a contact
351
+
352
+ ---
353
+
354
+ ## 26. Create Cost
355
+
356
+ - **Slug:** `create_cost`
357
+ - **Namespace:** `custom_object`
358
+ - **ID:** `operation-custom_object.create_cost`
359
+
360
+ Creates Cost
361
+
362
+ ---
363
+
364
+ ## 27. Create Devrev Api
365
+
366
+ - **Slug:** `create_devrev__api`
367
+ - **Namespace:** `custom_object`
368
+ - **ID:** `operation-custom_object.create_devrev__api`
369
+
370
+ Creates Devrev Api
371
+
372
+ ---
373
+
374
+ ## 28. Create DM
375
+
376
+ - **Slug:** `create_dm`
377
+ - **Namespace:** `devrev`
378
+ - **ID:** `operation-devrev.create_dm`
379
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
380
+ - **Scopes:** `dm:write`
381
+
382
+ Creates message to initiate a private conversation between the given users
383
+
384
+ ---
385
+
386
+ ## 29. Create Articulate(reach360-o):Courses-fea0ea393c
387
+
388
+ - **Slug:** `create_drad_cour`
389
+ - **Namespace:** `custom_object`
390
+ - **ID:** `operation-custom_object.create_drad_cour`
391
+
392
+ Creates Articulate(reach360-o):Courses-fea0ea393c
393
+
394
+ ---
395
+
396
+ ## 30. Create Google_Cal(devrev.ai):Invitee-8fc70d7ea5
397
+
398
+ - **Slug:** `create_drad_invi`
399
+ - **Namespace:** `custom_object`
400
+ - **ID:** `operation-custom_object.create_drad_invi`
401
+
402
+ Creates Google_Cal(devrev.ai):Invitee-8fc70d7ea5
403
+
404
+ ---
405
+
406
+ ## 31. Create Articulate(reach360-o):Learners-63b4ae28b4
407
+
408
+ - **Slug:** `create_drad_lear`
409
+ - **Namespace:** `custom_object`
410
+ - **ID:** `operation-custom_object.create_drad_lear`
411
+
412
+ Creates Articulate(reach360-o):Learners-63b4ae28b4
413
+
414
+ ---
415
+
416
+ ## 32. Create EastWest
417
+
418
+ - **Slug:** `create_eastwest`
419
+ - **Namespace:** `custom_object`
420
+ - **ID:** `operation-custom_object.create_eastwest`
421
+
422
+ Creates EastWest
423
+
424
+ ---
425
+
426
+ ## 33. Create Enhancement
427
+
428
+ - **Slug:** `create_enhancement`
429
+ - **Namespace:** `devrev`
430
+ - **ID:** `operation-devrev.create_enhancement`
431
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
432
+ - **Scopes:** `enhancement:write`
433
+
434
+ Creates an enhancement
435
+
436
+ ---
437
+
438
+ ## 34. Create Entity
439
+
440
+ - **Slug:** `create_entity`
441
+ - **Namespace:** `custom_object`
442
+ - **ID:** `operation-custom_object.create_entity`
443
+
444
+ Creates Entity
445
+
446
+ ---
447
+
448
+ ## 35. Create Event
449
+
450
+ - **Slug:** `create_event`
451
+ - **Namespace:** `custom_object`
452
+ - **ID:** `operation-custom_object.create_event`
453
+
454
+ Creates Event
455
+
456
+ ---
457
+
458
+ ## 36. Create Expense
459
+
460
+ - **Slug:** `create_expense`
461
+ - **Namespace:** `custom_object`
462
+ - **ID:** `operation-custom_object.create_expense`
463
+
464
+ Creates Expense
465
+
466
+ ---
467
+
468
+ ## 37. Create Form
469
+
470
+ - **Slug:** `create_form`
471
+ - **Namespace:** `custom_object`
472
+ - **ID:** `operation-custom_object.create_form`
473
+
474
+ Creates Form
475
+
476
+ ---
477
+
478
+ ## 38. Create Implementation
479
+
480
+ - **Slug:** `create_implementation`
481
+ - **Namespace:** `custom_object`
482
+ - **ID:** `operation-custom_object.create_implementation`
483
+
484
+ Creates Implementation
485
+
486
+ ---
487
+
488
+ ## 39. Create Incident
489
+
490
+ - **Slug:** `create_incident`
491
+ - **Namespace:** `devrev`
492
+ - **ID:** `operation-devrev.create_incident`
493
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
494
+ - **Scopes:** `incident:write`
495
+
496
+ Creates an incident
497
+
498
+ ---
499
+
500
+ ## 40. Create Issue
501
+
502
+ - **Slug:** `create_issue`
503
+ - **Namespace:** `devrev`
504
+ - **ID:** `operation-devrev.create_issue`
505
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
506
+ - **Scopes:** `issue:write`
507
+
508
+ Creates an issue
509
+
510
+ ---
511
+
512
+ ## 41. Create Log Pattern
513
+
514
+ - **Slug:** `create_log_pattern`
515
+ - **Namespace:** `custom_object`
516
+ - **ID:** `operation-custom_object.create_log_pattern`
517
+
518
+ Creates Log Pattern
519
+
520
+ ---
521
+
522
+ ## 42. Create Meeting
523
+
524
+ - **Slug:** `create_meeting`
525
+ - **Namespace:** `devrev`
526
+ - **ID:** `operation-devrev.create_meeting`
527
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
528
+ - **Scopes:** `meeting:write`
529
+
530
+ Creates a meeting
531
+
532
+ ---
533
+
534
+ ## 43. Create Mypod
535
+
536
+ - **Slug:** `create_mypod`
537
+ - **Namespace:** `custom_object`
538
+ - **ID:** `operation-custom_object.create_mypod`
539
+ - **Tags:** HIPAA, ALPHA
540
+
541
+ Creates Mypod
542
+
543
+ ---
544
+
545
+ ## 44. Create On Call Group
546
+
547
+ - **Slug:** `create_on_call_group`
548
+ - **Namespace:** `custom_object`
549
+ - **ID:** `operation-custom_object.create_on_call_group`
550
+
551
+ Creates On Call Group
552
+
553
+ ---
554
+
555
+ ## 45. Create On Call Schedule
556
+
557
+ - **Slug:** `create_on_call_schedule`
558
+ - **Namespace:** `custom_object`
559
+ - **ID:** `operation-custom_object.create_on_call_schedule`
560
+
561
+ Creates On Call Schedule
562
+
563
+ ---
564
+
565
+ ## 46. Create Oncall
566
+
567
+ - **Slug:** `create_oncall`
568
+ - **Namespace:** `custom_object`
569
+ - **ID:** `operation-custom_object.create_oncall`
570
+
571
+ Creates Oncall
572
+
573
+ ---
574
+
575
+ ## 47. Create Oncallsup
576
+
577
+ - **Slug:** `create_oncallsup`
578
+ - **Namespace:** `custom_object`
579
+ - **ID:** `operation-custom_object.create_oncallsup`
580
+
581
+ Creates Oncallsup
582
+
583
+ ---
584
+
585
+ ## 48. Create Opportunity
586
+
587
+ - **Slug:** `create_opportunity`
588
+ - **Namespace:** `devrev`
589
+ - **ID:** `operation-devrev.create_opportunity`
590
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
591
+ - **Scopes:** `opportunity:write`
592
+
593
+ Creates an opportunity
594
+
595
+ ---
596
+
597
+ ## 49. Create Part Recommendation
598
+
599
+ - **Slug:** `create_part_recommendation`
600
+ - **Namespace:** `custom_object`
601
+ - **ID:** `operation-custom_object.create_part_recommendation`
602
+
603
+ Creates Part Recommendation
604
+
605
+ ---
606
+
607
+ ## 50. Create Problem
608
+
609
+ - **Slug:** `create_problem`
610
+ - **Namespace:** `custom_object`
611
+ - **ID:** `operation-custom_object.create_problem`
612
+
613
+ Creates Problem
614
+
615
+ ---
616
+
617
+ ## 51. Create Project
618
+
619
+ - **Slug:** `create_project`
620
+ - **Namespace:** `custom_object`
621
+ - **ID:** `operation-custom_object.create_project`
622
+
623
+ Creates Project
624
+
625
+ ---
626
+
627
+ ## 52. Create Reco
628
+
629
+ - **Slug:** `create_reco`
630
+ - **Namespace:** `custom_object`
631
+ - **ID:** `operation-custom_object.create_reco`
632
+
633
+ Creates Reco
634
+
635
+ ---
636
+
637
+ ## 53. Create Relationsh
638
+
639
+ - **Slug:** `create_relationsh`
640
+ - **Namespace:** `custom_object`
641
+ - **ID:** `operation-custom_object.create_relationsh`
642
+
643
+ Creates Relationsh
644
+
645
+ ---
646
+
647
+ ## 54. Create Release
648
+
649
+ - **Slug:** `create_release`
650
+ - **Namespace:** `custom_object`
651
+ - **ID:** `operation-custom_object.create_release`
652
+
653
+ Creates Release
654
+
655
+ ---
656
+
657
+ ## 55. Create Reviews
658
+
659
+ - **Slug:** `create_reviews`
660
+ - **Namespace:** `custom_object`
661
+ - **ID:** `operation-custom_object.create_reviews`
662
+
663
+ Creates Reviews
664
+
665
+ ---
666
+
667
+ ## 56. Create Round Robin State
668
+
669
+ - **Slug:** `create_round_robin_state`
670
+ - **Namespace:** `custom_object`
671
+ - **ID:** `operation-custom_object.create_round_robin_state`
672
+
673
+ Creates Round Robin State
674
+
675
+ ---
676
+
677
+ ## 57. Create Sales Pod
678
+
679
+ - **Slug:** `create_sales_pod`
680
+ - **Namespace:** `custom_object`
681
+ - **ID:** `operation-custom_object.create_sales_pod`
682
+ - **Tags:** HIPAA, ALPHA
683
+
684
+ Creates Sales Pod
685
+
686
+ ---
687
+
688
+ ## 58. Create SDR
689
+
690
+ - **Slug:** `create_sdr_alias`
691
+ - **Namespace:** `custom_object`
692
+ - **ID:** `operation-custom_object.create_sdr_alias`
693
+ - **Tags:** HIPAA, ALPHA
694
+
695
+ Creates SDR
696
+
697
+ ---
698
+
699
+ ## 59. Create Sdr Pod
700
+
701
+ - **Slug:** `create_sdr_pod`
702
+ - **Namespace:** `custom_object`
703
+ - **ID:** `operation-custom_object.create_sdr_pod`
704
+ - **Tags:** HIPAA, ALPHA
705
+
706
+ Creates Sdr Pod
707
+
708
+ ---
709
+
710
+ ## 60. Create Se
711
+
712
+ - **Slug:** `create_se`
713
+ - **Namespace:** `custom_object`
714
+ - **ID:** `operation-custom_object.create_se`
715
+ - **Tags:** HIPAA, ALPHA
716
+
717
+ Creates Se
718
+
719
+ ---
720
+
721
+ ## 61. Create Stream
722
+
723
+ - **Slug:** `create_stream`
724
+ - **Namespace:** `custom_object`
725
+ - **ID:** `operation-custom_object.create_stream`
726
+
727
+ Creates Stream
728
+
729
+ ---
730
+
731
+ ## 62. Create Syncerrors
732
+
733
+ - **Slug:** `create_syncerrors`
734
+ - **Namespace:** `custom_object`
735
+ - **ID:** `operation-custom_object.create_syncerrors`
736
+
737
+ Creates Syncerrors
738
+
739
+ ---
740
+
741
+ ## 63. Create Team
742
+
743
+ - **Slug:** `create_team`
744
+ - **Namespace:** `custom_object`
745
+ - **ID:** `operation-custom_object.create_team`
746
+
747
+ Creates Team
748
+
749
+ ---
750
+
751
+ ## 64. Create Testresult
752
+
753
+ - **Slug:** `create_testresult`
754
+ - **Namespace:** `custom_object`
755
+ - **ID:** `operation-custom_object.create_testresult`
756
+
757
+ Creates Testresult
758
+
759
+ ---
760
+
761
+ ## 65. Create Theme
762
+
763
+ - **Slug:** `create_theme`
764
+ - **Namespace:** `custom_object`
765
+ - **ID:** `operation-custom_object.create_theme`
766
+
767
+ Creates Theme
768
+
769
+ ---
770
+
771
+ ## 66. Create Ticket
772
+
773
+ - **Slug:** `create_ticket`
774
+ - **Namespace:** `devrev`
775
+ - **ID:** `operation-devrev.create_ticket`
776
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
777
+ - **Scopes:** `ticket:write`
778
+
779
+ Creates a ticket
780
+
781
+ ---
782
+
783
+ ## 67. Create Todo
784
+
785
+ - **Slug:** `create_todo`
786
+ - **Namespace:** `custom_object`
787
+ - **ID:** `operation-custom_object.create_todo`
788
+
789
+ Creates Todo
790
+
791
+ ---
792
+
793
+ ## 68. Create Vendor
794
+
795
+ - **Slug:** `create_vendor`
796
+ - **Namespace:** `custom_object`
797
+ - **ID:** `operation-custom_object.create_vendor`
798
+
799
+ Creates Vendor
800
+
801
+ ---
802
+
803
+ ## 69. Create Webinar
804
+
805
+ - **Slug:** `create_webinar`
806
+ - **Namespace:** `custom_object`
807
+ - **ID:** `operation-custom_object.create_webinar`
808
+
809
+ Creates Webinar
810
+
811
+ ---
812
+
813
+ ## 70. Evaluate Sentiment
814
+
815
+ - **Slug:** `evaluate_sentiment`
816
+ - **Namespace:** `devrev`
817
+ - **ID:** `operation-devrev.evaluate_sentiment`
818
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
819
+
820
+ Takes the ID of the object and evaluates the sentiment. Currently supports tickets and conversations.
821
+
822
+ ### Input (`input`)
823
+
824
+ - `object` (id) **(required)** — The ID of the ticket or conversation to evaluate sentiment for
825
+ - ID types: `ticket`, `conversation`
826
+
827
+ ### Output (`output`)
828
+
829
+ - `sentiment` (enum) **(required)** — The evaluated sentiment. Takes one of the following values: delighted, frustrated, happy, neutral, unhappy, unknown
830
+ - Allowed: `delighted`, `frustrated`, `happy`, `neutral`, `unhappy`, `unknown`
831
+ - `justification` (text) — The justification for the evaluated sentiment
832
+
833
+ ---
834
+
835
+ ## 71. Execute Analytics Job
836
+
837
+ - **Slug:** `execute_analytics_job`
838
+ - **Namespace:** `devrev`
839
+ - **ID:** `operation-devrev.execute_analytics_job`
840
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
841
+ - **Scopes:** `serengeti_job:execute`
842
+
843
+ Executes analytics job. Uses the analytics jobs execute API endpoint.
844
+
845
+ ### Input (`input`)
846
+
847
+ - `id` (id) **(required)** — Job ID of the analytics job to be executed
848
+ - ID types: `oasis_job`
849
+ - `scheduled_at` (timestamp) — The scheduled time when the analytics job should be executed
850
+
851
+ ---
852
+
853
+ ## 72. Execute Metric Action
854
+
855
+ - **Slug:** `execute_metric_action`
856
+ - **Namespace:** `devrev`
857
+ - **ID:** `operation-devrev.execute_metric_action`
858
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
859
+
860
+ Handles the execution of metric actions (such as Start, Complete, Restart, Pause, Resume) on a particular SLA metric tracked on a given object.
861
+
862
+ ---
863
+
864
+ ## 73. Extract Content
865
+
866
+ - **Slug:** `extract_content`
867
+ - **Namespace:** `devrev`
868
+ - **ID:** `operation-devrev.extract_content`
869
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
870
+ - **Scopes:** `artifact:read`
871
+
872
+ Extracts the content from a resource artifact or URL.
873
+
874
+ ### Input (`input`)
875
+
876
+ - `input_format` (uenum) **(required)** — The format of the input to extract content from.
877
+ - Default: `1`
878
+ - `max_content_length` (int) — The maximum number of content to return in KB. Default is 500KB.
879
+
880
+ ### Output (`output`)
881
+
882
+ - `artifact_id` (id) **(required)** — The ID of the artifact containing the extracted content.
883
+ - ID types: `artifact`
884
+ - `is_truncated` (bool) — Whether the content was truncated.
885
+
886
+ ---
887
+
888
+ ## 74. Fetch Object Context
889
+
890
+ - **Slug:** `fetch_object_context`
891
+ - **Namespace:** `devrev`
892
+ - **ID:** `operation-devrev.fetch_object_context`
893
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
894
+ - **Scopes:** `link:read`, `artifact:read`
895
+
896
+ Gets contextual information about any DevRev object
897
+
898
+ ### Input (`input`)
899
+
900
+ - `object_id` (text) **(required)** — The ID or display-id of the DevRev object.
901
+
902
+ ### Output (`output`)
903
+
904
+ - `object_context` (text) — The context of the DevRev object.
905
+
906
+ ---
907
+
908
+ ## 75. Get AAI Project
909
+
910
+ - **Slug:** `get_aai_proj`
911
+ - **Namespace:** `custom_object`
912
+ - **ID:** `operation-custom_object.get_aai_proj`
913
+
914
+ Gets the AAI Project record details
915
+
916
+ ---
917
+
918
+ ## 76. Get Abc
919
+
920
+ - **Slug:** `get_abc`
921
+ - **Namespace:** `custom_object`
922
+ - **ID:** `operation-custom_object.get_abc`
923
+ - **Tags:** ALPHA
924
+
925
+ Gets the Abc record details
926
+
927
+ ---
928
+
929
+ ## 77. Get Account
930
+
931
+ - **Slug:** `get_account`
932
+ - **Namespace:** `devrev`
933
+ - **ID:** `operation-devrev.get_account`
934
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
935
+ - **Scopes:** `account:read`
936
+
937
+ Gets the account details for the given account ID
938
+
939
+ ---
940
+
941
+ ## 78. Get Ai Agent Session Metrics
942
+
943
+ - **Slug:** `get_ai_agent_session_metrics`
944
+ - **Namespace:** `custom_object`
945
+ - **ID:** `operation-custom_object.get_ai_agent_session_metrics`
946
+
947
+ Gets the Ai Agent Session Metrics record details
948
+
949
+ ---
950
+
951
+ ## 79. Get AirSync Sync Unit
952
+
953
+ - **Slug:** `get_airdrop_sync_unit`
954
+ - **Namespace:** `devrev`
955
+ - **ID:** `operation-devrev.get_airdrop_sync_unit`
956
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
957
+ - **Scopes:** `sync_unit:read`
958
+
959
+ Fetches the details of the AirSync Sync Unit with the given ID
960
+
961
+ ---
962
+
963
+ ## 80. Get Alert
964
+
965
+ - **Slug:** `get_alert`
966
+ - **Namespace:** `custom_object`
967
+ - **ID:** `operation-custom_object.get_alert`
968
+
969
+ Gets the Alert record details
970
+
971
+ ---
972
+
973
+ ## 81. Get Pending Record
974
+
975
+ - **Slug:** `get_as_pend`
976
+ - **Namespace:** `custom_object`
977
+ - **ID:** `operation-custom_object.get_as_pend`
978
+
979
+ Gets the Pending Record record details
980
+
981
+ ---
982
+
983
+ ## 82. Get Asagentlog
984
+
985
+ - **Slug:** `get_asagentlog`
986
+ - **Namespace:** `custom_object`
987
+ - **ID:** `operation-custom_object.get_asagentlog`
988
+
989
+ Gets the Asagentlog record details
990
+
991
+ ---
992
+
993
+ ## 83. Get Asownerlog
994
+
995
+ - **Slug:** `get_asownerlog`
996
+ - **Namespace:** `custom_object`
997
+ - **ID:** `operation-custom_object.get_asownerlog`
998
+ - **Tags:** ALPHA
999
+
1000
+ Gets the Asownerlog record details
1001
+
1002
+ ---
1003
+
1004
+ ## 84. Get Asreport
1005
+
1006
+ - **Slug:** `get_asreport`
1007
+ - **Namespace:** `custom_object`
1008
+ - **ID:** `operation-custom_object.get_asreport`
1009
+
1010
+ Gets the Asreport record details
1011
+
1012
+ ---
1013
+
1014
+ ## 85. Get Asset
1015
+
1016
+ - **Slug:** `get_asset`
1017
+ - **Namespace:** `custom_object`
1018
+ - **ID:** `operation-custom_object.get_asset`
1019
+
1020
+ Gets the Asset record details
1021
+
1022
+ ---
1023
+
1024
+ ## 86. Get Campaigned
1025
+
1026
+ - **Slug:** `get_campaigned`
1027
+ - **Namespace:** `custom_object`
1028
+ - **ID:** `operation-custom_object.get_campaigned`
1029
+
1030
+ Gets the Campaigned record details
1031
+
1032
+ ---
1033
+
1034
+ ## 87. Get Chameleon Survey
1035
+
1036
+ - **Slug:** `get_chameleon_survey`
1037
+ - **Namespace:** `custom_object`
1038
+ - **ID:** `operation-custom_object.get_chameleon_survey`
1039
+
1040
+ Gets the Chameleon Survey record details
1041
+
1042
+ ---
1043
+
1044
+ ## 88. Get Change
1045
+
1046
+ - **Slug:** `get_change`
1047
+ - **Namespace:** `custom_object`
1048
+ - **ID:** `operation-custom_object.get_change`
1049
+
1050
+ Gets the Change record details
1051
+
1052
+ ---
1053
+
1054
+ ## 89. Get Chat
1055
+
1056
+ - **Slug:** `get_chat`
1057
+ - **Namespace:** `custom_object`
1058
+ - **ID:** `operation-custom_object.get_chat`
1059
+
1060
+ Gets the Chat record details
1061
+
1062
+ ---
1063
+
1064
+ ## 90. Get Code Change
1065
+
1066
+ - **Slug:** `get_code_change`
1067
+ - **Namespace:** `custom_object`
1068
+ - **ID:** `operation-custom_object.get_code_change`
1069
+
1070
+ Gets the Code Change record details
1071
+
1072
+ ---
1073
+
1074
+ ## 91. Get Conversation
1075
+
1076
+ - **Slug:** `get_conversation`
1077
+ - **Namespace:** `devrev`
1078
+ - **ID:** `operation-devrev.get_conversation`
1079
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1080
+ - **Scopes:** `conversation:read`
1081
+
1082
+ Gets the conversation details for the given ID
1083
+
1084
+ ---
1085
+
1086
+ ## 92. Get Cost
1087
+
1088
+ - **Slug:** `get_cost`
1089
+ - **Namespace:** `custom_object`
1090
+ - **ID:** `operation-custom_object.get_cost`
1091
+
1092
+ Gets the Cost record details
1093
+
1094
+ ---
1095
+
1096
+ ## 93. Get Customer
1097
+
1098
+ - **Slug:** `get_customer`
1099
+ - **Namespace:** `devrev`
1100
+ - **ID:** `operation-devrev.get_customer`
1101
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1102
+ - **Scopes:** `rev_user:read`
1103
+
1104
+ Fetch details of the contact user with the given ID
1105
+
1106
+ ---
1107
+
1108
+ ## 94. Get Devrev Api
1109
+
1110
+ - **Slug:** `get_devrev__api`
1111
+ - **Namespace:** `custom_object`
1112
+ - **ID:** `operation-custom_object.get_devrev__api`
1113
+
1114
+ Gets the Devrev Api record details
1115
+
1116
+ ---
1117
+
1118
+ ## 95. Get Articulate(reach360-o):Courses-fea0ea393c
1119
+
1120
+ - **Slug:** `get_drad_cour`
1121
+ - **Namespace:** `custom_object`
1122
+ - **ID:** `operation-custom_object.get_drad_cour`
1123
+
1124
+ Gets the Articulate(reach360-o):Courses-fea0ea393c record details
1125
+
1126
+ ---
1127
+
1128
+ ## 96. Get Google_Cal(devrev.ai):Invitee-8fc70d7ea5
1129
+
1130
+ - **Slug:** `get_drad_invi`
1131
+ - **Namespace:** `custom_object`
1132
+ - **ID:** `operation-custom_object.get_drad_invi`
1133
+
1134
+ Gets the Google_Cal(devrev.ai):Invitee-8fc70d7ea5 record details
1135
+
1136
+ ---
1137
+
1138
+ ## 97. Get Articulate(reach360-o):Learners-63b4ae28b4
1139
+
1140
+ - **Slug:** `get_drad_lear`
1141
+ - **Namespace:** `custom_object`
1142
+ - **ID:** `operation-custom_object.get_drad_lear`
1143
+
1144
+ Gets the Articulate(reach360-o):Learners-63b4ae28b4 record details
1145
+
1146
+ ---
1147
+
1148
+ ## 98. Get EastWest
1149
+
1150
+ - **Slug:** `get_eastwest`
1151
+ - **Namespace:** `custom_object`
1152
+ - **ID:** `operation-custom_object.get_eastwest`
1153
+
1154
+ Gets the EastWest record details
1155
+
1156
+ ---
1157
+
1158
+ ## 99. Get Enhancement
1159
+
1160
+ - **Slug:** `get_enhancement`
1161
+ - **Namespace:** `devrev`
1162
+ - **ID:** `operation-devrev.get_enhancement`
1163
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1164
+ - **Scopes:** `enhancement:read`
1165
+
1166
+ Gets an enhancement by ID
1167
+
1168
+ ---
1169
+
1170
+ ## 100. Get Entity
1171
+
1172
+ - **Slug:** `get_entity`
1173
+ - **Namespace:** `custom_object`
1174
+ - **ID:** `operation-custom_object.get_entity`
1175
+
1176
+ Gets the Entity record details
1177
+
1178
+ ---
1179
+
1180
+ ## 101. Get Event
1181
+
1182
+ - **Slug:** `get_event`
1183
+ - **Namespace:** `custom_object`
1184
+ - **ID:** `operation-custom_object.get_event`
1185
+
1186
+ Gets the Event record details
1187
+
1188
+ ---
1189
+
1190
+ ## 102. Get Expense
1191
+
1192
+ - **Slug:** `get_expense`
1193
+ - **Namespace:** `custom_object`
1194
+ - **ID:** `operation-custom_object.get_expense`
1195
+
1196
+ Gets the Expense record details
1197
+
1198
+ ---
1199
+
1200
+ ## 103. Get Feature
1201
+
1202
+ - **Slug:** `get_feature`
1203
+ - **Namespace:** `devrev`
1204
+ - **ID:** `operation-devrev.get_feature`
1205
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1206
+ - **Scopes:** `feature:read`
1207
+
1208
+ Gets the feature details for the given ID
1209
+
1210
+ ---
1211
+
1212
+ ## 104. Get Form
1213
+
1214
+ - **Slug:** `get_form`
1215
+ - **Namespace:** `custom_object`
1216
+ - **ID:** `operation-custom_object.get_form`
1217
+
1218
+ Gets the Form record details
1219
+
1220
+ ---
1221
+
1222
+ ## 105. Get Implementation
1223
+
1224
+ - **Slug:** `get_implementation`
1225
+ - **Namespace:** `custom_object`
1226
+ - **ID:** `operation-custom_object.get_implementation`
1227
+
1228
+ Gets the Implementation record details
1229
+
1230
+ ---
1231
+
1232
+ ## 106. Get Incident
1233
+
1234
+ - **Slug:** `get_incident`
1235
+ - **Namespace:** `devrev`
1236
+ - **ID:** `operation-devrev.get_incident`
1237
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1238
+ - **Scopes:** `incident:read`
1239
+
1240
+ Fetches details of the incident with the given ID
1241
+
1242
+ ---
1243
+
1244
+ ## 107. Get Issue
1245
+
1246
+ - **Slug:** `get_issue`
1247
+ - **Namespace:** `devrev`
1248
+ - **ID:** `operation-devrev.get_issue`
1249
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1250
+ - **Scopes:** `issue:read`
1251
+
1252
+ Gets an issue by ID
1253
+
1254
+ ---
1255
+
1256
+ ## 108. Get Log Pattern
1257
+
1258
+ - **Slug:** `get_log_pattern`
1259
+ - **Namespace:** `custom_object`
1260
+ - **ID:** `operation-custom_object.get_log_pattern`
1261
+
1262
+ Gets the Log Pattern record details
1263
+
1264
+ ---
1265
+
1266
+ ## 109. Get Meeting
1267
+
1268
+ - **Slug:** `get_meeting`
1269
+ - **Namespace:** `devrev`
1270
+ - **ID:** `operation-devrev.get_meeting`
1271
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1272
+ - **Scopes:** `meeting:read`
1273
+
1274
+ Gets the meeting details for the given meeting ID
1275
+
1276
+ ---
1277
+
1278
+ ## 110. Get Metric Trackers
1279
+
1280
+ - **Slug:** `get_metric_trackers`
1281
+ - **Namespace:** `devrev`
1282
+ - **ID:** `operation-devrev.get_metric_trackers`
1283
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1284
+
1285
+ Fetches the SLA metric trackers for a given object.
1286
+
1287
+ ---
1288
+
1289
+ ## 111. Get Mypod
1290
+
1291
+ - **Slug:** `get_mypod`
1292
+ - **Namespace:** `custom_object`
1293
+ - **ID:** `operation-custom_object.get_mypod`
1294
+ - **Tags:** ALPHA
1295
+
1296
+ Gets the Mypod record details
1297
+
1298
+ ---
1299
+
1300
+ ## 112. Get On Call Group
1301
+
1302
+ - **Slug:** `get_on_call_group`
1303
+ - **Namespace:** `custom_object`
1304
+ - **ID:** `operation-custom_object.get_on_call_group`
1305
+
1306
+ Gets the On Call Group record details
1307
+
1308
+ ---
1309
+
1310
+ ## 113. Get On Call Schedule
1311
+
1312
+ - **Slug:** `get_on_call_schedule`
1313
+ - **Namespace:** `custom_object`
1314
+ - **ID:** `operation-custom_object.get_on_call_schedule`
1315
+
1316
+ Gets the On Call Schedule record details
1317
+
1318
+ ---
1319
+
1320
+ ## 114. Get Oncall
1321
+
1322
+ - **Slug:** `get_oncall`
1323
+ - **Namespace:** `custom_object`
1324
+ - **ID:** `operation-custom_object.get_oncall`
1325
+
1326
+ Gets the Oncall record details
1327
+
1328
+ ---
1329
+
1330
+ ## 115. Get Oncallsup
1331
+
1332
+ - **Slug:** `get_oncallsup`
1333
+ - **Namespace:** `custom_object`
1334
+ - **ID:** `operation-custom_object.get_oncallsup`
1335
+
1336
+ Gets the Oncallsup record details
1337
+
1338
+ ---
1339
+
1340
+ ## 116. Get Opportunity
1341
+
1342
+ - **Slug:** `get_opportunity`
1343
+ - **Namespace:** `devrev`
1344
+ - **ID:** `operation-devrev.get_opportunity`
1345
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1346
+ - **Scopes:** `opportunity:read`
1347
+
1348
+ Gets the opportunity details for the given opportunity ID
1349
+
1350
+ ---
1351
+
1352
+ ## 117. Get Organization User
1353
+
1354
+ - **Slug:** `get_org_user`
1355
+ - **Namespace:** `devrev`
1356
+ - **ID:** `operation-devrev.get_org_user`
1357
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1358
+ - **Scopes:** `dev_user:read`
1359
+
1360
+ Retrieves details of a specific user in the organization
1361
+
1362
+ ---
1363
+
1364
+ ## 118. Organization User Preference
1365
+
1366
+ - **Slug:** `get_org_user_preference`
1367
+ - **Namespace:** `devrev`
1368
+ - **ID:** `operation-devrev.get_org_user_preference`
1369
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1370
+ - **Scopes:** `preference:read`
1371
+
1372
+ Fetch preference of the organization user with the given user ID
1373
+
1374
+ ---
1375
+
1376
+ ## 119. Get Part
1377
+
1378
+ - **Slug:** `get_part`
1379
+ - **Namespace:** `devrev`
1380
+ - **ID:** `operation-devrev.get_part`
1381
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1382
+
1383
+ Gets a part by ID
1384
+
1385
+ ---
1386
+
1387
+ ## 120. Get Part Recommendation
1388
+
1389
+ - **Slug:** `get_part_recommendation`
1390
+ - **Namespace:** `custom_object`
1391
+ - **ID:** `operation-custom_object.get_part_recommendation`
1392
+
1393
+ Gets the Part Recommendation record details
1394
+
1395
+ ---
1396
+
1397
+ ## 121. Get Problem
1398
+
1399
+ - **Slug:** `get_problem`
1400
+ - **Namespace:** `custom_object`
1401
+ - **ID:** `operation-custom_object.get_problem`
1402
+
1403
+ Gets the Problem record details
1404
+
1405
+ ---
1406
+
1407
+ ## 122. Get Project
1408
+
1409
+ - **Slug:** `get_project`
1410
+ - **Namespace:** `custom_object`
1411
+ - **ID:** `operation-custom_object.get_project`
1412
+
1413
+ Gets the Project record details
1414
+
1415
+ ---
1416
+
1417
+ ## 123. Get Reco
1418
+
1419
+ - **Slug:** `get_reco`
1420
+ - **Namespace:** `custom_object`
1421
+ - **ID:** `operation-custom_object.get_reco`
1422
+
1423
+ Gets the Reco record details
1424
+
1425
+ ---
1426
+
1427
+ ## 124. Get Relationsh
1428
+
1429
+ - **Slug:** `get_relationsh`
1430
+ - **Namespace:** `custom_object`
1431
+ - **ID:** `operation-custom_object.get_relationsh`
1432
+
1433
+ Gets the Relationsh record details
1434
+
1435
+ ---
1436
+
1437
+ ## 125. Get Release
1438
+
1439
+ - **Slug:** `get_release`
1440
+ - **Namespace:** `custom_object`
1441
+ - **ID:** `operation-custom_object.get_release`
1442
+
1443
+ Gets the Release record details
1444
+
1445
+ ---
1446
+
1447
+ ## 126. Get Reviews
1448
+
1449
+ - **Slug:** `get_reviews`
1450
+ - **Namespace:** `custom_object`
1451
+ - **ID:** `operation-custom_object.get_reviews`
1452
+
1453
+ Gets the Reviews record details
1454
+
1455
+ ---
1456
+
1457
+ ## 127. Get Round Robin State
1458
+
1459
+ - **Slug:** `get_round_robin_state`
1460
+ - **Namespace:** `custom_object`
1461
+ - **ID:** `operation-custom_object.get_round_robin_state`
1462
+
1463
+ Gets the Round Robin State record details
1464
+
1465
+ ---
1466
+
1467
+ ## 128. Get Sales Pod
1468
+
1469
+ - **Slug:** `get_sales_pod`
1470
+ - **Namespace:** `custom_object`
1471
+ - **ID:** `operation-custom_object.get_sales_pod`
1472
+ - **Tags:** ALPHA
1473
+
1474
+ Gets the Sales Pod record details
1475
+
1476
+ ---
1477
+
1478
+ ## 129. Get SDR
1479
+
1480
+ - **Slug:** `get_sdr_alias`
1481
+ - **Namespace:** `custom_object`
1482
+ - **ID:** `operation-custom_object.get_sdr_alias`
1483
+ - **Tags:** ALPHA
1484
+
1485
+ Gets the SDR record details
1486
+
1487
+ ---
1488
+
1489
+ ## 130. Get Sdr Pod
1490
+
1491
+ - **Slug:** `get_sdr_pod`
1492
+ - **Namespace:** `custom_object`
1493
+ - **ID:** `operation-custom_object.get_sdr_pod`
1494
+ - **Tags:** ALPHA
1495
+
1496
+ Gets the Sdr Pod record details
1497
+
1498
+ ---
1499
+
1500
+ ## 131. Get Se
1501
+
1502
+ - **Slug:** `get_se`
1503
+ - **Namespace:** `custom_object`
1504
+ - **ID:** `operation-custom_object.get_se`
1505
+ - **Tags:** ALPHA
1506
+
1507
+ Gets the Se record details
1508
+
1509
+ ---
1510
+
1511
+ ## 132. Get Stream
1512
+
1513
+ - **Slug:** `get_stream`
1514
+ - **Namespace:** `custom_object`
1515
+ - **ID:** `operation-custom_object.get_stream`
1516
+
1517
+ Gets the Stream record details
1518
+
1519
+ ---
1520
+
1521
+ ## 133. Get Syncerrors
1522
+
1523
+ - **Slug:** `get_syncerrors`
1524
+ - **Namespace:** `custom_object`
1525
+ - **ID:** `operation-custom_object.get_syncerrors`
1526
+
1527
+ Gets the Syncerrors record details
1528
+
1529
+ ---
1530
+
1531
+ ## 134. Get Team
1532
+
1533
+ - **Slug:** `get_team`
1534
+ - **Namespace:** `custom_object`
1535
+ - **ID:** `operation-custom_object.get_team`
1536
+
1537
+ Gets the Team record details
1538
+
1539
+ ---
1540
+
1541
+ ## 135. Get Testresult
1542
+
1543
+ - **Slug:** `get_testresult`
1544
+ - **Namespace:** `custom_object`
1545
+ - **ID:** `operation-custom_object.get_testresult`
1546
+
1547
+ Gets the Testresult record details
1548
+
1549
+ ---
1550
+
1551
+ ## 136. Get Theme
1552
+
1553
+ - **Slug:** `get_theme`
1554
+ - **Namespace:** `custom_object`
1555
+ - **ID:** `operation-custom_object.get_theme`
1556
+
1557
+ Gets the Theme record details
1558
+
1559
+ ---
1560
+
1561
+ ## 137. Get Ticket
1562
+
1563
+ - **Slug:** `get_ticket`
1564
+ - **Namespace:** `devrev`
1565
+ - **ID:** `operation-devrev.get_ticket`
1566
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1567
+ - **Scopes:** `ticket:read`
1568
+
1569
+ Gets a ticket by ID
1570
+
1571
+ ---
1572
+
1573
+ ## 138. Get Time
1574
+
1575
+ - **Slug:** `get_time`
1576
+ - **Namespace:** `devrev`
1577
+ - **ID:** `operation-devrev.get_time`
1578
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1579
+
1580
+ Perform time-related actions
1581
+
1582
+ ### Input (`input`)
1583
+
1584
+ - `action` (enum) **(required)** — The action to perform
1585
+ - Allowed: `get_current_time`
1586
+ - Default: `get_current_time`
1587
+ - `time_zone` (enum) **(required)** — The time zone offset to use for the time
1588
+ - Allowed: `-12:00`, `-11:00`, `-11:30`, `-10:00`, `-10:30`, `-09:00`, `-09:30`, `-08:00`, `-08:30`, `-07:00`, `-07:30`, `-06:00`, `-06:30`, `-05:00`, `-05:30`, `-04:00`, `-04:30`, `-03:00`, `-03:30`, `-02:00`, `-02:30`, `-01:00`, `-01:30`, `+00:00`, `-00:30`, `+00:30`, `+01:00`, `+01:30`, `+02:00`, `+02:30`, `+03:00`, `+03:30`, `+04:00`, `+04:30`, `+05:00`, `+05:30`, `+05:45`, `+06:00`, `+06:30`, `+07:00`, `+07:30`, `+08:00`, `+08:30`, `+08:45`, `+09:00`, `+09:30`, `+10:00`, `+10:30`, `+11:00`, `+11:30`, `+12:00`, `+12:45`, `+13:00`, `+14:00`
1589
+ - Default: `+00:00`
1590
+
1591
+ ### Output (`output`)
1592
+
1593
+ - `unix_seconds` (int) **(required)** — The time in unix seconds, i.e., the number of seconds since 1970-01-01 00:00:00 UTC.
1594
+ - `timestamp` (timestamp) **(required)** — The time as a string of format: 2024-05-22T12:00:00.000Z. Compatible with DevRev APIs.
1595
+ - `day` (enum) **(required)** — The day of the week.
1596
+ - Allowed: `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`
1597
+ - `hour` (int) **(required)** — The hour of the day.
1598
+ - `minute` (int) **(required)** — The minute of the hour.
1599
+ - `date` (int) **(required)** — The date of the month.
1600
+ - `month` (int) **(required)** — The month of the year.
1601
+ - `year` (int) **(required)** — The year.
1602
+
1603
+ ---
1604
+
1605
+ ## 139. Get Todo
1606
+
1607
+ - **Slug:** `get_todo`
1608
+ - **Namespace:** `custom_object`
1609
+ - **ID:** `operation-custom_object.get_todo`
1610
+
1611
+ Gets the Todo record details
1612
+
1613
+ ---
1614
+
1615
+ ## 140. Get Vendor
1616
+
1617
+ - **Slug:** `get_vendor`
1618
+ - **Namespace:** `custom_object`
1619
+ - **ID:** `operation-custom_object.get_vendor`
1620
+
1621
+ Gets the Vendor record details
1622
+
1623
+ ---
1624
+
1625
+ ## 141. Get Webinar
1626
+
1627
+ - **Slug:** `get_webinar`
1628
+ - **Namespace:** `custom_object`
1629
+ - **ID:** `operation-custom_object.get_webinar`
1630
+
1631
+ Gets the Webinar record details
1632
+
1633
+ ---
1634
+
1635
+ ## 142. Get Workspace
1636
+
1637
+ - **Slug:** `get_workspace`
1638
+ - **Namespace:** `devrev`
1639
+ - **ID:** `operation-devrev.get_workspace`
1640
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1641
+ - **Scopes:** `rev_org:read`
1642
+
1643
+ Fetch details of the workspace with the given ID
1644
+
1645
+ ---
1646
+
1647
+ ## 143. HTTP
1648
+
1649
+ - **Slug:** `http`
1650
+ - **Namespace:** `devrev`
1651
+ - **ID:** `operation-devrev.http`
1652
+ - **Tags:** Agent Skill, Workflow Node
1653
+
1654
+ Make HTTP requests
1655
+
1656
+ ### Input (`input`)
1657
+
1658
+ - `method` (enum) — Method of the HTTP request
1659
+ - Allowed: `GET`, `POST`, `PUT`, `DELETE`
1660
+ - Default: `GET`
1661
+ - `query_params` (array) — Query parameters of the HTTP request
1662
+ - `key` (text) **(required)** — Key
1663
+ - `value` (text) — Value
1664
+ - `auth_type` (enum) — Authentication type
1665
+ - Allowed: `Bearer`, `Basic`, `None`
1666
+ - Default: `None`
1667
+ - `url` (text) **(required)** — URL of the HTTP request
1668
+ - `headers` (array) — Headers of the HTTP request
1669
+ - `key` (text) **(required)** — Key
1670
+ - `value` (text) — Value
1671
+ - `body` (text) — Body of the HTTP request
1672
+
1673
+ ### Output (`output`)
1674
+
1675
+ - `status_code` (int) — Status code of the HTTP request
1676
+ - `body` (text) — Body of the HTTP request
1677
+ - `headers` (array) — Headers of the HTTP request
1678
+ - `key` (text) **(required)** — Key
1679
+ - `value` (text) — Value
1680
+ - `content_type` (text) — Content type of the HTTP response
1681
+
1682
+ ---
1683
+
1684
+ ## 144. Hybrid Search
1685
+
1686
+ - **Slug:** `hybrid_search`
1687
+ - **Namespace:** `devrev`
1688
+ - **ID:** `operation-devrev.hybrid_search`
1689
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1690
+
1691
+ Intelligent search across DevRev's knowledge graph to find and discover objects
1692
+
1693
+ ### Input (`input`)
1694
+
1695
+ - `query` (text) **(required)** — Search query
1696
+ - `namespace` (uenum) **(required)** — Namespace to search in
1697
+ - `limit` (int) — Maximum number of results to return. Default is 10.
1698
+
1699
+ ---
1700
+
1701
+ ## 145. Execute Code
1702
+
1703
+ - **Slug:** `invoke_code`
1704
+ - **Namespace:** `devrev`
1705
+ - **ID:** `operation-devrev.invoke_code`
1706
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1707
+
1708
+ Executes code as an operation.
1709
+
1710
+ ---
1711
+
1712
+ ## 146. Knowledge Store Deindex
1713
+
1714
+ - **Slug:** `knowledge_store_deindex`
1715
+ - **Namespace:** `devrev`
1716
+ - **ID:** `operation-devrev.knowledge_store_deindex`
1717
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1718
+ - **Scopes:** `knowledge_node:write`
1719
+
1720
+ Remove indexing for a given text or article.
1721
+
1722
+ ### Input (`input`)
1723
+
1724
+ - `object` (id) **(required)** — The ID of the source object to deindex content for.
1725
+ - ID types: `account`, `capability`, `conversation`, `enhancement`, `feature`, `incident`, `issue`, `linkable`, `opportunity`, `product`, `revo`, `revu`, `runnable`, `ticket`, `meeting`, `widget`, `custom_object`, `article`, `workflow`, `operation`, `dataset`, `question_answer`, `dashboard`
1726
+ - `content_descriptor` (text) **(required)** — Identifier that describes what the content is about. Eg: issue_summary, ticket_summary, comment_summary, etc.
1727
+ - `use_case` (uenum) **(required)** — Use case identifier that defines the purpose of the indexed content.
1728
+
1729
+ ---
1730
+
1731
+ ## 147. Knowledge Store Index
1732
+
1733
+ - **Slug:** `knowledge_store_index`
1734
+ - **Namespace:** `devrev`
1735
+ - **ID:** `operation-devrev.knowledge_store_index`
1736
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1737
+ - **Scopes:** `knowledge_node:write`
1738
+
1739
+ Create or update indexing for a given text or article.
1740
+
1741
+ ---
1742
+
1743
+ ## 148. Link Conversation with Ticket
1744
+
1745
+ - **Slug:** `link_conversation_with_ticket`
1746
+ - **Namespace:** `devrev`
1747
+ - **ID:** `operation-devrev.link_conversation_with_ticket`
1748
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1749
+ - **Scopes:** `ticket:read`, `conversation:read`, `link:write`
1750
+
1751
+ Links a conversation with a ticket
1752
+
1753
+ ### Input (`input`)
1754
+
1755
+ - `source` (id) **(required)** — ID of the conversation
1756
+ - ID types: `conversation`
1757
+ - `target` (id) **(required)** — ID of the ticket
1758
+ - ID types: `ticket`
1759
+
1760
+ ---
1761
+
1762
+ ## 149. Link Incident with Issue
1763
+
1764
+ - **Slug:** `link_incident_with_issue`
1765
+ - **Namespace:** `devrev`
1766
+ - **ID:** `operation-devrev.link_incident_with_issue`
1767
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1768
+ - **Scopes:** `incident:read`, `issue:read`, `link:write`
1769
+
1770
+ Links an incident with an issue
1771
+
1772
+ ### Input (`input`)
1773
+
1774
+ - `source` (id) **(required)** — ID of the incident
1775
+ - ID types: `incident`
1776
+ - `target` (id) **(required)** — ID of the issue
1777
+ - ID types: `issue`
1778
+
1779
+ ---
1780
+
1781
+ ## 150. Link Incident with Ticket
1782
+
1783
+ - **Slug:** `link_incident_with_ticket`
1784
+ - **Namespace:** `devrev`
1785
+ - **ID:** `operation-devrev.link_incident_with_ticket`
1786
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1787
+ - **Scopes:** `incident:read`, `ticket:read`, `link:write`
1788
+
1789
+ Links an incident with a ticket
1790
+
1791
+ ### Input (`input`)
1792
+
1793
+ - `source` (id) **(required)** — ID of the incident
1794
+ - ID types: `incident`
1795
+ - `target` (id) **(required)** — ID of the ticket
1796
+ - ID types: `ticket`
1797
+
1798
+ ---
1799
+
1800
+ ## 151. Link Issue with Issue
1801
+
1802
+ - **Slug:** `link_issue_with_issue`
1803
+ - **Namespace:** `devrev`
1804
+ - **ID:** `operation-devrev.link_issue_with_issue`
1805
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1806
+ - **Scopes:** `issue:read`, `link:write`
1807
+
1808
+ Links an issue with another issue
1809
+
1810
+ ### Input (`input`)
1811
+
1812
+ - `source` (id) **(required)** — ID of the source issue
1813
+ - ID types: `issue`
1814
+ - `link_type` (enum) — Type of link used to define the relationship.
1815
+ - Allowed: `is_parent_of`, `is_dependent_on`, `is_duplicate_of`
1816
+ - `target` (id) **(required)** — ID of the target issue
1817
+ - ID types: `issue`
1818
+
1819
+ ---
1820
+
1821
+ ## 152. Link Meeting with Ticket
1822
+
1823
+ - **Slug:** `link_meeting_with_ticket`
1824
+ - **Namespace:** `devrev`
1825
+ - **ID:** `operation-devrev.link_meeting_with_ticket`
1826
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1827
+ - **Scopes:** `meeting:read`, `ticket:read`, `link:write`
1828
+
1829
+ Links a meeting with a ticket
1830
+
1831
+ ### Input (`input`)
1832
+
1833
+ - `source` (id) **(required)** — ID of the meeting
1834
+ - ID types: `meeting`
1835
+ - `target` (id) **(required)** — ID of the ticket
1836
+ - ID types: `ticket`
1837
+
1838
+ ---
1839
+
1840
+ ## 153. Link Ticket with Issue
1841
+
1842
+ - **Slug:** `link_ticket_with_issue`
1843
+ - **Namespace:** `devrev`
1844
+ - **ID:** `operation-devrev.link_ticket_with_issue`
1845
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1846
+ - **Scopes:** `ticket:read`, `issue:read`, `link:write`
1847
+
1848
+ Links a ticket with an issue
1849
+
1850
+ ### Input (`input`)
1851
+
1852
+ - `source` (id) **(required)** — ID of the ticket
1853
+ - ID types: `ticket`
1854
+ - `target` (id) **(required)** — ID of the issue
1855
+ - ID types: `issue`
1856
+
1857
+ ---
1858
+
1859
+ ## 154. List Enhancements
1860
+
1861
+ - **Slug:** `list_enhancements`
1862
+ - **Namespace:** `devrev`
1863
+ - **ID:** `operation-devrev.list_enhancements`
1864
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1865
+ - **Scopes:** `enhancement:read`
1866
+
1867
+ Lists enhancements
1868
+
1869
+ ---
1870
+
1871
+ ## 155. List Issues
1872
+
1873
+ - **Slug:** `list_issues`
1874
+ - **Namespace:** `devrev`
1875
+ - **ID:** `operation-devrev.list_issues`
1876
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node
1877
+ - **Scopes:** `issue:read`
1878
+
1879
+ Lists issues
1880
+
1881
+ ---
1882
+
1883
+ ## 156. List objects linked to account
1884
+
1885
+ - **Slug:** `list_objects_linked_to_account`
1886
+ - **Namespace:** `devrev`
1887
+ - **ID:** `operation-devrev.list_objects_linked_to_account`
1888
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1889
+
1890
+ Gets the linked objects of an account
1891
+
1892
+ ---
1893
+
1894
+ ## 157. List objects linked to issue
1895
+
1896
+ - **Slug:** `list_objects_linked_to_issue`
1897
+ - **Namespace:** `devrev`
1898
+ - **ID:** `operation-devrev.list_objects_linked_to_issue`
1899
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1900
+ - **Scopes:** `issue:read`, `link:read`
1901
+
1902
+ Gets the linked objects of an issue
1903
+
1904
+ ---
1905
+
1906
+ ## 158. List objects linked to meeting
1907
+
1908
+ - **Slug:** `list_objects_linked_to_meeting`
1909
+ - **Namespace:** `devrev`
1910
+ - **ID:** `operation-devrev.list_objects_linked_to_meeting`
1911
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1912
+
1913
+ Gets the linked objects of a meeting
1914
+
1915
+ ---
1916
+
1917
+ ## 159. List objects linked to opportunity
1918
+
1919
+ - **Slug:** `list_objects_linked_to_opportunity`
1920
+ - **Namespace:** `devrev`
1921
+ - **ID:** `operation-devrev.list_objects_linked_to_opportunity`
1922
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1923
+
1924
+ Gets the linked objects of an opportunity
1925
+
1926
+ ---
1927
+
1928
+ ## 160. List objects linked to ticket
1929
+
1930
+ - **Slug:** `list_objects_linked_to_ticket`
1931
+ - **Namespace:** `devrev`
1932
+ - **ID:** `operation-devrev.list_objects_linked_to_ticket`
1933
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1934
+ - **Scopes:** `ticket:read`, `link:read`
1935
+
1936
+ Gets the linked objects of a ticket
1937
+
1938
+ ---
1939
+
1940
+ ## 161. Loop Over Articles
1941
+
1942
+ - **Slug:** `loop_over_articles`
1943
+ - **Namespace:** `devrev`
1944
+ - **ID:** `operation-devrev.loop_over_articles`
1945
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1946
+
1947
+ Lists articles based on the given filters and performs operations on them.
1948
+
1949
+ ---
1950
+
1951
+ ## 162. Loop Over Customers
1952
+
1953
+ - **Slug:** `loop_over_customers`
1954
+ - **Namespace:** `devrev`
1955
+ - **ID:** `operation-devrev.loop_over_customers`
1956
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1957
+
1958
+ Lists customers based on the given filters and performs operations on them.
1959
+
1960
+ ---
1961
+
1962
+ ## 163. Loop Over Users
1963
+
1964
+ - **Slug:** `loop_over_dev_users`
1965
+ - **Namespace:** `devrev`
1966
+ - **ID:** `operation-devrev.loop_over_dev_users`
1967
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1968
+
1969
+ Lists dev users based on the given filters and performs operations on them.
1970
+
1971
+ ---
1972
+
1973
+ ## 164. Loop Over Enhancements
1974
+
1975
+ - **Slug:** `loop_over_enhancements`
1976
+ - **Namespace:** `devrev`
1977
+ - **ID:** `operation-devrev.loop_over_enhancements`
1978
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1979
+ - **Scopes:** `enhancement:read`
1980
+
1981
+ Lists enhancements based on the given filters and performs operations on them.
1982
+
1983
+ ---
1984
+
1985
+ ## 165. Loop Over Incidents
1986
+
1987
+ - **Slug:** `loop_over_incidents`
1988
+ - **Namespace:** `devrev`
1989
+ - **ID:** `operation-devrev.loop_over_incidents`
1990
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
1991
+
1992
+ Lists incidents based on the given filters and performs operations on them.
1993
+
1994
+ ---
1995
+
1996
+ ## 166. Loop Over Issues
1997
+
1998
+ - **Slug:** `loop_over_issues`
1999
+ - **Namespace:** `devrev`
2000
+ - **ID:** `operation-devrev.loop_over_issues`
2001
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2002
+ - **Scopes:** `issue:read`
2003
+
2004
+ Lists issues based on the given filters and performs operations on them.
2005
+
2006
+ ---
2007
+
2008
+ ## 167. Loop Over Meetings
2009
+
2010
+ - **Slug:** `loop_over_meetings`
2011
+ - **Namespace:** `devrev`
2012
+ - **ID:** `operation-devrev.loop_over_meetings`
2013
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2014
+
2015
+ Lists meetings based on the given filters and performs operations on them.
2016
+
2017
+ ---
2018
+
2019
+ ## 168. Loop Over Objects Linked to Account
2020
+
2021
+ - **Slug:** `loop_over_objects_linked_to_account`
2022
+ - **Namespace:** `devrev`
2023
+ - **ID:** `operation-devrev.loop_over_objects_linked_to_account`
2024
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2025
+
2026
+ Lists objects linked to an account and performs operations on them.
2027
+
2028
+ ---
2029
+
2030
+ ## 169. Loop Over Objects Linked to Enhancement
2031
+
2032
+ - **Slug:** `loop_over_objects_linked_to_enhancement`
2033
+ - **Namespace:** `devrev`
2034
+ - **ID:** `operation-devrev.loop_over_objects_linked_to_enhancement`
2035
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2036
+
2037
+ Lists objects linked to an enhancement and performs operations on them.
2038
+
2039
+ ---
2040
+
2041
+ ## 170. Loop Over Objects Linked to Issue
2042
+
2043
+ - **Slug:** `loop_over_objects_linked_to_issue`
2044
+ - **Namespace:** `devrev`
2045
+ - **ID:** `operation-devrev.loop_over_objects_linked_to_issue`
2046
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2047
+
2048
+ Lists objects linked to an issue and performs operations on them.
2049
+
2050
+ ---
2051
+
2052
+ ## 171. Loop Over Objects Linked to Opportunity
2053
+
2054
+ - **Slug:** `loop_over_objects_linked_to_opportunity`
2055
+ - **Namespace:** `devrev`
2056
+ - **ID:** `operation-devrev.loop_over_objects_linked_to_opportunity`
2057
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2058
+
2059
+ Lists objects linked to an opportunity and performs operations on them.
2060
+
2061
+ ---
2062
+
2063
+ ## 172. Loop Over Opportunity
2064
+
2065
+ - **Slug:** `loop_over_opportunity`
2066
+ - **Namespace:** `devrev`
2067
+ - **ID:** `operation-devrev.loop_over_opportunity`
2068
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2069
+ - **Scopes:** `opportunity:read`
2070
+
2071
+ Lists opportunities based on the given filters and performs operations on them.
2072
+
2073
+ ---
2074
+
2075
+ ## 173. Loop Over Sprints
2076
+
2077
+ - **Slug:** `loop_over_sprints`
2078
+ - **Namespace:** `devrev`
2079
+ - **ID:** `operation-devrev.loop_over_sprints`
2080
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2081
+ - **Scopes:** `sprint:read`
2082
+
2083
+ Lists sprints based on the given filters and performs operations on them.
2084
+
2085
+ ---
2086
+
2087
+ ## 174. Loop Over Tickets
2088
+
2089
+ - **Slug:** `loop_over_tickets`
2090
+ - **Namespace:** `devrev`
2091
+ - **ID:** `operation-devrev.loop_over_tickets`
2092
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2093
+
2094
+ Lists tickets based on the given filters and performs operations on them.
2095
+
2096
+ ---
2097
+
2098
+ ## 175. Oasis SQL Execute
2099
+
2100
+ - **Slug:** `oasis_sql_execute`
2101
+ - **Namespace:** `devrev`
2102
+ - **ID:** `operation-devrev.oasis_sql_execute`
2103
+ - **Tags:** Agent Skill, Workflow Node
2104
+ - **Scopes:** `oasis_data:read`
2105
+
2106
+ Executes a SQL query on an Oasis dataset
2107
+
2108
+ ### Input (`input`)
2109
+
2110
+ - `sql_query` (text) **(required)** — SQL query to execute
2111
+
2112
+ ### Output (`output`)
2113
+
2114
+ - `data` (text) — Data returned by the SQL query
2115
+
2116
+ ---
2117
+
2118
+ ## 176. Spam Checker
2119
+
2120
+ - **Slug:** `object_spam_checker`
2121
+ - **Namespace:** `devrev`
2122
+ - **ID:** `operation-devrev.object_spam_checker`
2123
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2124
+
2125
+ Checks if the given ticket or conversation is spam or not.
2126
+
2127
+ ### Input (`input`)
2128
+
2129
+ - `id` (id) **(required)** — The ID of the ticket or conversation to check for spam
2130
+ - ID types: `ticket`, `conversation`
2131
+
2132
+ ### Output (`output`)
2133
+
2134
+ - `is_spam` (bool) **(required)** — Returns true if object is spam, false otherwise
2135
+
2136
+ ---
2137
+
2138
+ ## 177. Pick User
2139
+
2140
+ - **Slug:** `pick_user`
2141
+ - **Namespace:** `devrev`
2142
+ - **ID:** `operation-devrev.pick_user`
2143
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2144
+ - **Scopes:** `object_member:read`
2145
+
2146
+ Picks an user from the group or list of users based on the given strategy.
2147
+
2148
+ ---
2149
+
2150
+ ## 178. Query Artifact Content
2151
+
2152
+ - **Slug:** `query_artifact_content`
2153
+ - **Namespace:** `devrev`
2154
+ - **ID:** `operation-devrev.query_artifact_content`
2155
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2156
+ - **Scopes:** `artifact:read`
2157
+
2158
+ Queries artifact and returns the relevant content. The provided token must have artifact creator permissions.
2159
+
2160
+ ### Input (`input`)
2161
+
2162
+ - `artifact_id` (id) **(required)** — The ID of the artifact to query content from.
2163
+ - ID types: `artifact`
2164
+ - `max_content_length` (int) — The maximum number of content to return in KB. Default is 500KB.
2165
+
2166
+ ### Output (`output`)
2167
+
2168
+ - `response` (text) — The response from the query.
2169
+ - `is_truncated` (bool) — Whether the content was truncated.
2170
+
2171
+ ---
2172
+
2173
+ ## 179. Send Notification
2174
+
2175
+ - **Slug:** `send_notification`
2176
+ - **Namespace:** `devrev`
2177
+ - **ID:** `operation-devrev.send_notification`
2178
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2179
+ - **Scopes:** `notification_content_template:all`, `notification:write`
2180
+
2181
+ Send notification to users or groups. By default, notification priority will be marked as "Important". Emails are sent for unread "Important" notifications. Once the workflow is deployed, any receiver can go notification preferences and change the priority to "Others" to stop receiving emails.
2182
+
2183
+ ### Input (`input`)
2184
+
2185
+ - `receivers` (array) **(required)** — The users or groups who will receive the notification
2186
+ - `body` (rich_text) **(required)** — The body of the notification
2187
+ - `title` (rich_text) **(required)** — The title of the notification
2188
+ - `content_template_id` (id) — The content template for the notification
2189
+ - ID types: `notification_content_template`
2190
+ - `linked_object` (id) — The object which will open on clicking the notification
2191
+ - ID types: `account`, `capability`, `enhancement`, `feature`, `incident`, `issue`, `linkable`, `opportunity`, `product`, `runnable`, `ticket`, `conversation`
2192
+
2193
+ ---
2194
+
2195
+ ## 180. Set Agent Skill Output
2196
+
2197
+ - **Slug:** `set_ai_agent_skill_output`
2198
+ - **Namespace:** `devrev`
2199
+ - **ID:** `operation-devrev.set_ai_agent_skill_output`
2200
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2201
+
2202
+ Sets the output of the AI agent skill
2203
+
2204
+ ### Input (`input`)
2205
+
2206
+ - `outputs` (array) **(required)** — Outputs of the skill. Specify the key and select the value for each key.
2207
+ - `key` (text) **(required)** — The key for the output. For e.g. 'output', 'api_response', etc.
2208
+ - `value` (json_value) — The value for the key
2209
+ - Default: `None`
2210
+
2211
+ ---
2212
+
2213
+ ## 181. Suggest Part
2214
+
2215
+ - **Slug:** `suggest_part`
2216
+ - **Namespace:** `devrev`
2217
+ - **ID:** `operation-devrev.suggest_part`
2218
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2219
+
2220
+ Suggest part that can be attributed to a given object
2221
+
2222
+ ### Input (`input`)
2223
+
2224
+ - `id` (id) **(required)** — The ID of the ticket, conversation or incident to suggest parts for
2225
+ - ID types: `ticket`, `conversation`, `incident`
2226
+
2227
+ ### Output (`output`)
2228
+
2229
+ - `id` (id) **(required)** — The ID of the suggested part
2230
+ - ID types: `capability`, `enhancement`, `feature`, `product`, `linkable`, `runnable`
2231
+ - `found` (bool) **(required)** — If suggestion is present, returns true
2232
+
2233
+ ---
2234
+
2235
+ ## 182. Talk to Agent
2236
+
2237
+ - **Slug:** `talk_to_agent`
2238
+ - **Namespace:** `devrev`
2239
+ - **ID:** `operation-devrev.talk_to_agent`
2240
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2241
+ - **Scopes:** `ai_agent:read`
2242
+
2243
+ Talk to an agent on the specified object
2244
+
2245
+ ---
2246
+
2247
+ ## 183. Update AAI Project
2248
+
2249
+ - **Slug:** `update_aai_proj`
2250
+ - **Namespace:** `custom_object`
2251
+ - **ID:** `operation-custom_object.update_aai_proj`
2252
+
2253
+ Updates the AAI Project
2254
+
2255
+ ---
2256
+
2257
+ ## 184. Update Abc
2258
+
2259
+ - **Slug:** `update_abc`
2260
+ - **Namespace:** `custom_object`
2261
+ - **ID:** `operation-custom_object.update_abc`
2262
+ - **Tags:** ALPHA
2263
+
2264
+ Updates the Abc
2265
+
2266
+ ---
2267
+
2268
+ ## 185. Update Account
2269
+
2270
+ - **Slug:** `update_account`
2271
+ - **Namespace:** `devrev`
2272
+ - **ID:** `operation-devrev.update_account`
2273
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
2274
+ - **Scopes:** `account:write`
2275
+
2276
+ Updates an account
2277
+
2278
+ ---
2279
+
2280
+ ## 186. Update Ai Agent Session Metrics
2281
+
2282
+ - **Slug:** `update_ai_agent_session_metrics`
2283
+ - **Namespace:** `custom_object`
2284
+ - **ID:** `operation-custom_object.update_ai_agent_session_metrics`
2285
+
2286
+ Updates the Ai Agent Session Metrics
2287
+
2288
+ ---
2289
+
2290
+ ## 187. Update Alert
2291
+
2292
+ - **Slug:** `update_alert`
2293
+ - **Namespace:** `custom_object`
2294
+ - **ID:** `operation-custom_object.update_alert`
2295
+
2296
+ Updates the Alert
2297
+
2298
+ ---
2299
+
2300
+ ## 188. Update Article
2301
+
2302
+ - **Slug:** `update_article`
2303
+ - **Namespace:** `devrev`
2304
+ - **ID:** `operation-devrev.update_article`
2305
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2306
+
2307
+ Updates an article
2308
+
2309
+ ---
2310
+
2311
+ ## 189. Update Pending Record
2312
+
2313
+ - **Slug:** `update_as_pend`
2314
+ - **Namespace:** `custom_object`
2315
+ - **ID:** `operation-custom_object.update_as_pend`
2316
+
2317
+ Updates the Pending Record
2318
+
2319
+ ---
2320
+
2321
+ ## 190. Update Asagentlog
2322
+
2323
+ - **Slug:** `update_asagentlog`
2324
+ - **Namespace:** `custom_object`
2325
+ - **ID:** `operation-custom_object.update_asagentlog`
2326
+
2327
+ Updates the Asagentlog
2328
+
2329
+ ---
2330
+
2331
+ ## 191. Update Asownerlog
2332
+
2333
+ - **Slug:** `update_asownerlog`
2334
+ - **Namespace:** `custom_object`
2335
+ - **ID:** `operation-custom_object.update_asownerlog`
2336
+ - **Tags:** ALPHA
2337
+
2338
+ Updates the Asownerlog
2339
+
2340
+ ---
2341
+
2342
+ ## 192. Update Asreport
2343
+
2344
+ - **Slug:** `update_asreport`
2345
+ - **Namespace:** `custom_object`
2346
+ - **ID:** `operation-custom_object.update_asreport`
2347
+
2348
+ Updates the Asreport
2349
+
2350
+ ---
2351
+
2352
+ ## 193. Update Asset
2353
+
2354
+ - **Slug:** `update_asset`
2355
+ - **Namespace:** `custom_object`
2356
+ - **ID:** `operation-custom_object.update_asset`
2357
+
2358
+ Updates the Asset
2359
+
2360
+ ---
2361
+
2362
+ ## 194. Update Campaigned
2363
+
2364
+ - **Slug:** `update_campaigned`
2365
+ - **Namespace:** `custom_object`
2366
+ - **ID:** `operation-custom_object.update_campaigned`
2367
+
2368
+ Updates the Campaigned
2369
+
2370
+ ---
2371
+
2372
+ ## 195. Update Chameleon Survey
2373
+
2374
+ - **Slug:** `update_chameleon_survey`
2375
+ - **Namespace:** `custom_object`
2376
+ - **ID:** `operation-custom_object.update_chameleon_survey`
2377
+
2378
+ Updates the Chameleon Survey
2379
+
2380
+ ---
2381
+
2382
+ ## 196. Update Change
2383
+
2384
+ - **Slug:** `update_change`
2385
+ - **Namespace:** `custom_object`
2386
+ - **ID:** `operation-custom_object.update_change`
2387
+
2388
+ Updates the Change
2389
+
2390
+ ---
2391
+
2392
+ ## 197. Update Chat
2393
+
2394
+ - **Slug:** `update_chat`
2395
+ - **Namespace:** `custom_object`
2396
+ - **ID:** `operation-custom_object.update_chat`
2397
+
2398
+ Updates the Chat
2399
+
2400
+ ---
2401
+
2402
+ ## 198. Update Code Change
2403
+
2404
+ - **Slug:** `update_code_change`
2405
+ - **Namespace:** `custom_object`
2406
+ - **ID:** `operation-custom_object.update_code_change`
2407
+
2408
+ Updates the Code Change
2409
+
2410
+ ---
2411
+
2412
+ ## 199. Update Contact
2413
+
2414
+ - **Slug:** `update_contact`
2415
+ - **Namespace:** `devrev`
2416
+ - **ID:** `operation-devrev.update_contact`
2417
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
2418
+ - **Scopes:** `rev_user:write`
2419
+
2420
+ Updates a contact
2421
+
2422
+ ---
2423
+
2424
+ ## 200. Update Conversation
2425
+
2426
+ - **Slug:** `update_conversation`
2427
+ - **Namespace:** `devrev`
2428
+ - **ID:** `operation-devrev.update_conversation`
2429
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
2430
+ - **Scopes:** `conversation:write`
2431
+
2432
+ Update a conversation
2433
+
2434
+ ---
2435
+
2436
+ ## 201. Update Cost
2437
+
2438
+ - **Slug:** `update_cost`
2439
+ - **Namespace:** `custom_object`
2440
+ - **ID:** `operation-custom_object.update_cost`
2441
+
2442
+ Updates the Cost
2443
+
2444
+ ---
2445
+
2446
+ ## 202. Update Devrev Api
2447
+
2448
+ - **Slug:** `update_devrev__api`
2449
+ - **Namespace:** `custom_object`
2450
+ - **ID:** `operation-custom_object.update_devrev__api`
2451
+
2452
+ Updates the Devrev Api
2453
+
2454
+ ---
2455
+
2456
+ ## 203. Update Articulate(reach360-o):Courses-fea0ea393c
2457
+
2458
+ - **Slug:** `update_drad_cour`
2459
+ - **Namespace:** `custom_object`
2460
+ - **ID:** `operation-custom_object.update_drad_cour`
2461
+
2462
+ Updates the Articulate(reach360-o):Courses-fea0ea393c
2463
+
2464
+ ---
2465
+
2466
+ ## 204. Update Google_Cal(devrev.ai):Invitee-8fc70d7ea5
2467
+
2468
+ - **Slug:** `update_drad_invi`
2469
+ - **Namespace:** `custom_object`
2470
+ - **ID:** `operation-custom_object.update_drad_invi`
2471
+
2472
+ Updates the Google_Cal(devrev.ai):Invitee-8fc70d7ea5
2473
+
2474
+ ---
2475
+
2476
+ ## 205. Update Articulate(reach360-o):Learners-63b4ae28b4
2477
+
2478
+ - **Slug:** `update_drad_lear`
2479
+ - **Namespace:** `custom_object`
2480
+ - **ID:** `operation-custom_object.update_drad_lear`
2481
+
2482
+ Updates the Articulate(reach360-o):Learners-63b4ae28b4
2483
+
2484
+ ---
2485
+
2486
+ ## 206. Update EastWest
2487
+
2488
+ - **Slug:** `update_eastwest`
2489
+ - **Namespace:** `custom_object`
2490
+ - **ID:** `operation-custom_object.update_eastwest`
2491
+
2492
+ Updates the EastWest
2493
+
2494
+ ---
2495
+
2496
+ ## 207. Update Enhancement
2497
+
2498
+ - **Slug:** `update_enhancement`
2499
+ - **Namespace:** `devrev`
2500
+ - **ID:** `operation-devrev.update_enhancement`
2501
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
2502
+ - **Scopes:** `enhancement:write`
2503
+
2504
+ Updates an existing enhancement
2505
+
2506
+ ---
2507
+
2508
+ ## 208. Update Entity
2509
+
2510
+ - **Slug:** `update_entity`
2511
+ - **Namespace:** `custom_object`
2512
+ - **ID:** `operation-custom_object.update_entity`
2513
+
2514
+ Updates the Entity
2515
+
2516
+ ---
2517
+
2518
+ ## 209. Update Event
2519
+
2520
+ - **Slug:** `update_event`
2521
+ - **Namespace:** `custom_object`
2522
+ - **ID:** `operation-custom_object.update_event`
2523
+
2524
+ Updates the Event
2525
+
2526
+ ---
2527
+
2528
+ ## 210. Update Expense
2529
+
2530
+ - **Slug:** `update_expense`
2531
+ - **Namespace:** `custom_object`
2532
+ - **ID:** `operation-custom_object.update_expense`
2533
+
2534
+ Updates the Expense
2535
+
2536
+ ---
2537
+
2538
+ ## 211. Update Form
2539
+
2540
+ - **Slug:** `update_form`
2541
+ - **Namespace:** `custom_object`
2542
+ - **ID:** `operation-custom_object.update_form`
2543
+
2544
+ Updates the Form
2545
+
2546
+ ---
2547
+
2548
+ ## 212. Update Implementation
2549
+
2550
+ - **Slug:** `update_implementation`
2551
+ - **Namespace:** `custom_object`
2552
+ - **ID:** `operation-custom_object.update_implementation`
2553
+
2554
+ Updates the Implementation
2555
+
2556
+ ---
2557
+
2558
+ ## 213. Update Incident
2559
+
2560
+ - **Slug:** `update_incident`
2561
+ - **Namespace:** `devrev`
2562
+ - **ID:** `operation-devrev.update_incident`
2563
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
2564
+ - **Scopes:** `incident:write`
2565
+
2566
+ Updates an incident
2567
+
2568
+ ---
2569
+
2570
+ ## 214. Update Issue
2571
+
2572
+ - **Slug:** `update_issue`
2573
+ - **Namespace:** `devrev`
2574
+ - **ID:** `operation-devrev.update_issue`
2575
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
2576
+ - **Scopes:** `issue:write`
2577
+
2578
+ Updates an issue
2579
+
2580
+ ---
2581
+
2582
+ ## 215. Update Log Pattern
2583
+
2584
+ - **Slug:** `update_log_pattern`
2585
+ - **Namespace:** `custom_object`
2586
+ - **ID:** `operation-custom_object.update_log_pattern`
2587
+
2588
+ Updates the Log Pattern
2589
+
2590
+ ---
2591
+
2592
+ ## 216. Update Meeting
2593
+
2594
+ - **Slug:** `update_meeting`
2595
+ - **Namespace:** `devrev`
2596
+ - **ID:** `operation-devrev.update_meeting`
2597
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2598
+ - **Scopes:** `meeting:write`
2599
+
2600
+ Updates a meeting
2601
+
2602
+ ---
2603
+
2604
+ ## 217. Update Mypod
2605
+
2606
+ - **Slug:** `update_mypod`
2607
+ - **Namespace:** `custom_object`
2608
+ - **ID:** `operation-custom_object.update_mypod`
2609
+ - **Tags:** ALPHA
2610
+
2611
+ Updates the Mypod
2612
+
2613
+ ---
2614
+
2615
+ ## 218. Update On Call Group
2616
+
2617
+ - **Slug:** `update_on_call_group`
2618
+ - **Namespace:** `custom_object`
2619
+ - **ID:** `operation-custom_object.update_on_call_group`
2620
+
2621
+ Updates the On Call Group
2622
+
2623
+ ---
2624
+
2625
+ ## 219. Update On Call Schedule
2626
+
2627
+ - **Slug:** `update_on_call_schedule`
2628
+ - **Namespace:** `custom_object`
2629
+ - **ID:** `operation-custom_object.update_on_call_schedule`
2630
+
2631
+ Updates the On Call Schedule
2632
+
2633
+ ---
2634
+
2635
+ ## 220. Update Oncall
2636
+
2637
+ - **Slug:** `update_oncall`
2638
+ - **Namespace:** `custom_object`
2639
+ - **ID:** `operation-custom_object.update_oncall`
2640
+
2641
+ Updates the Oncall
2642
+
2643
+ ---
2644
+
2645
+ ## 221. Update Oncallsup
2646
+
2647
+ - **Slug:** `update_oncallsup`
2648
+ - **Namespace:** `custom_object`
2649
+ - **ID:** `operation-custom_object.update_oncallsup`
2650
+
2651
+ Updates the Oncallsup
2652
+
2653
+ ---
2654
+
2655
+ ## 222. Update Opportunity
2656
+
2657
+ - **Slug:** `update_opportunity`
2658
+ - **Namespace:** `devrev`
2659
+ - **ID:** `operation-devrev.update_opportunity`
2660
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
2661
+ - **Scopes:** `opportunity:write`
2662
+
2663
+ Updates an opportunity
2664
+
2665
+ ---
2666
+
2667
+ ## 223. Update Part Recommendation
2668
+
2669
+ - **Slug:** `update_part_recommendation`
2670
+ - **Namespace:** `custom_object`
2671
+ - **ID:** `operation-custom_object.update_part_recommendation`
2672
+
2673
+ Updates the Part Recommendation
2674
+
2675
+ ---
2676
+
2677
+ ## 224. Update Problem
2678
+
2679
+ - **Slug:** `update_problem`
2680
+ - **Namespace:** `custom_object`
2681
+ - **ID:** `operation-custom_object.update_problem`
2682
+
2683
+ Updates the Problem
2684
+
2685
+ ---
2686
+
2687
+ ## 225. Update Project
2688
+
2689
+ - **Slug:** `update_project`
2690
+ - **Namespace:** `custom_object`
2691
+ - **ID:** `operation-custom_object.update_project`
2692
+
2693
+ Updates the Project
2694
+
2695
+ ---
2696
+
2697
+ ## 226. Update Question Answer
2698
+
2699
+ - **Slug:** `update_question_answer`
2700
+ - **Namespace:** `devrev`
2701
+ - **ID:** `operation-devrev.update_question_answer`
2702
+ - **Tags:** HIPAA, Agent Skill, Workflow Node
2703
+ - **Scopes:** `question_answer:write`
2704
+
2705
+ Updates Question Answer
2706
+
2707
+ ---
2708
+
2709
+ ## 227. Update Reco
2710
+
2711
+ - **Slug:** `update_reco`
2712
+ - **Namespace:** `custom_object`
2713
+ - **ID:** `operation-custom_object.update_reco`
2714
+
2715
+ Updates the Reco
2716
+
2717
+ ---
2718
+
2719
+ ## 228. Update Relationsh
2720
+
2721
+ - **Slug:** `update_relationsh`
2722
+ - **Namespace:** `custom_object`
2723
+ - **ID:** `operation-custom_object.update_relationsh`
2724
+
2725
+ Updates the Relationsh
2726
+
2727
+ ---
2728
+
2729
+ ## 229. Update Release
2730
+
2731
+ - **Slug:** `update_release`
2732
+ - **Namespace:** `custom_object`
2733
+ - **ID:** `operation-custom_object.update_release`
2734
+
2735
+ Updates the Release
2736
+
2737
+ ---
2738
+
2739
+ ## 230. Update Reviews
2740
+
2741
+ - **Slug:** `update_reviews`
2742
+ - **Namespace:** `custom_object`
2743
+ - **ID:** `operation-custom_object.update_reviews`
2744
+
2745
+ Updates the Reviews
2746
+
2747
+ ---
2748
+
2749
+ ## 231. Update Round Robin State
2750
+
2751
+ - **Slug:** `update_round_robin_state`
2752
+ - **Namespace:** `custom_object`
2753
+ - **ID:** `operation-custom_object.update_round_robin_state`
2754
+
2755
+ Updates the Round Robin State
2756
+
2757
+ ---
2758
+
2759
+ ## 232. Update Sales Pod
2760
+
2761
+ - **Slug:** `update_sales_pod`
2762
+ - **Namespace:** `custom_object`
2763
+ - **ID:** `operation-custom_object.update_sales_pod`
2764
+ - **Tags:** ALPHA
2765
+
2766
+ Updates the Sales Pod
2767
+
2768
+ ---
2769
+
2770
+ ## 233. Update SDR
2771
+
2772
+ - **Slug:** `update_sdr_alias`
2773
+ - **Namespace:** `custom_object`
2774
+ - **ID:** `operation-custom_object.update_sdr_alias`
2775
+ - **Tags:** ALPHA
2776
+
2777
+ Updates the SDR
2778
+
2779
+ ---
2780
+
2781
+ ## 234. Update Sdr Pod
2782
+
2783
+ - **Slug:** `update_sdr_pod`
2784
+ - **Namespace:** `custom_object`
2785
+ - **ID:** `operation-custom_object.update_sdr_pod`
2786
+ - **Tags:** ALPHA
2787
+
2788
+ Updates the Sdr Pod
2789
+
2790
+ ---
2791
+
2792
+ ## 235. Update Se
2793
+
2794
+ - **Slug:** `update_se`
2795
+ - **Namespace:** `custom_object`
2796
+ - **ID:** `operation-custom_object.update_se`
2797
+ - **Tags:** ALPHA
2798
+
2799
+ Updates the Se
2800
+
2801
+ ---
2802
+
2803
+ ## 236. Update Stream
2804
+
2805
+ - **Slug:** `update_stream`
2806
+ - **Namespace:** `custom_object`
2807
+ - **ID:** `operation-custom_object.update_stream`
2808
+
2809
+ Updates the Stream
2810
+
2811
+ ---
2812
+
2813
+ ## 237. Update Syncerrors
2814
+
2815
+ - **Slug:** `update_syncerrors`
2816
+ - **Namespace:** `custom_object`
2817
+ - **ID:** `operation-custom_object.update_syncerrors`
2818
+
2819
+ Updates the Syncerrors
2820
+
2821
+ ---
2822
+
2823
+ ## 238. Update Team
2824
+
2825
+ - **Slug:** `update_team`
2826
+ - **Namespace:** `custom_object`
2827
+ - **ID:** `operation-custom_object.update_team`
2828
+
2829
+ Updates the Team
2830
+
2831
+ ---
2832
+
2833
+ ## 239. Update Testresult
2834
+
2835
+ - **Slug:** `update_testresult`
2836
+ - **Namespace:** `custom_object`
2837
+ - **ID:** `operation-custom_object.update_testresult`
2838
+
2839
+ Updates the Testresult
2840
+
2841
+ ---
2842
+
2843
+ ## 240. Update Theme
2844
+
2845
+ - **Slug:** `update_theme`
2846
+ - **Namespace:** `custom_object`
2847
+ - **ID:** `operation-custom_object.update_theme`
2848
+
2849
+ Updates the Theme
2850
+
2851
+ ---
2852
+
2853
+ ## 241. Update Ticket
2854
+
2855
+ - **Slug:** `update_ticket`
2856
+ - **Namespace:** `devrev`
2857
+ - **ID:** `operation-devrev.update_ticket`
2858
+ - **Tags:** HIPAA, MCP Tool, Agent Skill, Workflow Node, Needs Approval
2859
+ - **Scopes:** `ticket:write`
2860
+
2861
+ Updates a ticket
2862
+
2863
+ ---
2864
+
2865
+ ## 242. Update Todo
2866
+
2867
+ - **Slug:** `update_todo`
2868
+ - **Namespace:** `custom_object`
2869
+ - **ID:** `operation-custom_object.update_todo`
2870
+
2871
+ Updates the Todo
2872
+
2873
+ ---
2874
+
2875
+ ## 243. Update Vendor
2876
+
2877
+ - **Slug:** `update_vendor`
2878
+ - **Namespace:** `custom_object`
2879
+ - **ID:** `operation-custom_object.update_vendor`
2880
+
2881
+ Updates the Vendor
2882
+
2883
+ ---
2884
+
2885
+ ## 244. Update Webinar
2886
+
2887
+ - **Slug:** `update_webinar`
2888
+ - **Namespace:** `custom_object`
2889
+ - **ID:** `operation-custom_object.update_webinar`
2890
+
2891
+ Updates the Webinar
2892
+
2893
+ ---
2894
+
2895
+ ## 245. Web Search
2896
+
2897
+ - **Slug:** `web_search`
2898
+ - **Namespace:** `devrev`
2899
+ - **ID:** `operation-devrev.web_search`
2900
+ - **Tags:** Agent Skill, Workflow Node
2901
+
2902
+ Calls a web search API with a query and returns results. Use this tool to get latest information from the internet. Prerequisite: Must be used only if the information is not available inside devrev knowledge. Use ONLY as a last resort, and ONLY for genuinely external information. Web search is external and may not reflect your organization's context.
2903
+
2904
+ Always cite your answers using the URLs provided in the search results. Citations for URL can be shown using markdown : [title](URL)
2905
+
2906
+ eg: Tesla shares have lost 44% of their value since hitting an all-time high in December [Tesla sales plunge: Biggest decline in history | CNN Business](https://www.cnn.com/2025/04/02/business/tesla-sales/index.html)
2907
+
2908
+ ### Input (`input`)
2909
+
2910
+ - `query` (text) **(required)** — The search query
2911
+ - `max_results` (int) — Number of results to fetch
2912
+
2913
+ ### Output (`output`)
2914
+
2915
+ - `results` (array) — Search results containing URLs and snippets
2916
+ - `url` (text) **(required)** — URL of the search result
2917
+ - `snippet` (text) — Snippet of the result content
2918
+
2919
+ ---