@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.
- package/README.md +37 -0
- package/bin/install.mjs +158 -0
- package/package.json +33 -0
- package/skills/account-evaluation/account-evaluation.md +64 -0
- package/skills/account-research/account-research.md +323 -0
- package/skills/account-research/references/signals-guide.md +52 -0
- package/skills/create-workflow-template/create-workflow-template.md +1091 -0
- package/skills/create-workflow-template/examples/3592-Generate rca from pia-template.json +1 -0
- package/skills/create-workflow-template/examples/4392-Async opportunity review agent-template.json +1 -0
- package/skills/create-workflow-template/examples/4441-Ticket escalator from customer message-template.json +1 -0
- package/skills/create-workflow-template/examples/4505-Auto-update issue tcd as end of sprint date-template.json +1 -0
- package/skills/create-workflow-template/examples/5040-Devrevu - enablement journey - poc emails-template.json +1 -0
- package/skills/create-workflow-template/examples/5158-Devrevu - enablement journey - mailing for non enablement journey users-template.json +1 -0
- package/skills/create-workflow-template/examples/5216-Account segment missing notification-template.json +1 -0
- package/skills/create-workflow-template/examples/working-csat-score-on-ticket-resolved.json +1 -0
- package/skills/create-workflow-template/examples/working-enhancement-replace-agent.json +1 -0
- package/skills/create-workflow-template/examples/working-invoke-code-sample.json +1 -0
- package/skills/create-workflow-template/examples/working-loop-variable-sample.json +1 -0
- package/skills/create-workflow-template/operations/actions.md +2919 -0
- package/skills/create-workflow-template/operations/blockings.md +38 -0
- package/skills/create-workflow-template/operations/controls.md +108 -0
- package/skills/create-workflow-template/operations/schema-index.md +166 -0
- package/skills/create-workflow-template/operations/schemas/account_created.md +58 -0
- package/skills/create-workflow-template/operations/schemas/account_updated.md +73 -0
- package/skills/create-workflow-template/operations/schemas/add_comment.md +29 -0
- package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_started.md +33 -0
- package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_status_updated.md +35 -0
- package/skills/create-workflow-template/operations/schemas/article_created.md +96 -0
- package/skills/create-workflow-template/operations/schemas/article_updated.md +135 -0
- package/skills/create-workflow-template/operations/schemas/ask_ai.md +11 -0
- package/skills/create-workflow-template/operations/schemas/classify_object.md +22 -0
- package/skills/create-workflow-template/operations/schemas/contact_created.md +43 -0
- package/skills/create-workflow-template/operations/schemas/contact_updated.md +65 -0
- package/skills/create-workflow-template/operations/schemas/conversation_created.md +108 -0
- package/skills/create-workflow-template/operations/schemas/conversation_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/conversation_updated.md +130 -0
- package/skills/create-workflow-template/operations/schemas/convert_conversation_to_ticket.md +13 -0
- package/skills/create-workflow-template/operations/schemas/create_account.md +62 -0
- package/skills/create-workflow-template/operations/schemas/create_article.md +79 -0
- package/skills/create-workflow-template/operations/schemas/create_brand.md +42 -0
- package/skills/create-workflow-template/operations/schemas/create_contact.md +65 -0
- package/skills/create-workflow-template/operations/schemas/create_dm.md +53 -0
- package/skills/create-workflow-template/operations/schemas/create_enhancement.md +63 -0
- package/skills/create-workflow-template/operations/schemas/create_incident.md +136 -0
- package/skills/create-workflow-template/operations/schemas/create_issue.md +150 -0
- package/skills/create-workflow-template/operations/schemas/create_meeting.md +105 -0
- package/skills/create-workflow-template/operations/schemas/create_opportunity.md +123 -0
- package/skills/create-workflow-template/operations/schemas/create_ticket.md +184 -0
- package/skills/create-workflow-template/operations/schemas/csat_response_received.md +73 -0
- package/skills/create-workflow-template/operations/schemas/dev_user_created.md +54 -0
- package/skills/create-workflow-template/operations/schemas/dev_user_updated.md +99 -0
- package/skills/create-workflow-template/operations/schemas/enhancement_created.md +46 -0
- package/skills/create-workflow-template/operations/schemas/enhancement_updated.md +89 -0
- package/skills/create-workflow-template/operations/schemas/evaluate_sentiment.md +14 -0
- package/skills/create-workflow-template/operations/schemas/execute_metric_action.md +11 -0
- package/skills/create-workflow-template/operations/schemas/feature_created.md +40 -0
- package/skills/create-workflow-template/operations/schemas/for_each.md +45 -0
- package/skills/create-workflow-template/operations/schemas/get_account.md +59 -0
- package/skills/create-workflow-template/operations/schemas/get_airdrop_sync_unit.md +32 -0
- package/skills/create-workflow-template/operations/schemas/get_brand.md +40 -0
- package/skills/create-workflow-template/operations/schemas/get_complete_enhancement_details.md +13 -0
- package/skills/create-workflow-template/operations/schemas/get_conversation.md +120 -0
- package/skills/create-workflow-template/operations/schemas/get_customer.md +60 -0
- package/skills/create-workflow-template/operations/schemas/get_enhancement.md +66 -0
- package/skills/create-workflow-template/operations/schemas/get_feature.md +56 -0
- package/skills/create-workflow-template/operations/schemas/get_incident.md +85 -0
- package/skills/create-workflow-template/operations/schemas/get_issue.md +117 -0
- package/skills/create-workflow-template/operations/schemas/get_kg_schema.md +23 -0
- package/skills/create-workflow-template/operations/schemas/get_meeting.md +87 -0
- package/skills/create-workflow-template/operations/schemas/get_metric_trackers.md +20 -0
- package/skills/create-workflow-template/operations/schemas/get_node_schema.md +29 -0
- package/skills/create-workflow-template/operations/schemas/get_opportunity.md +93 -0
- package/skills/create-workflow-template/operations/schemas/get_org_user.md +57 -0
- package/skills/create-workflow-template/operations/schemas/get_org_user_preference.md +40 -0
- package/skills/create-workflow-template/operations/schemas/get_part.md +55 -0
- package/skills/create-workflow-template/operations/schemas/get_self.md +54 -0
- package/skills/create-workflow-template/operations/schemas/get_session_details.md +45 -0
- package/skills/create-workflow-template/operations/schemas/get_sprint_board.md +103 -0
- package/skills/create-workflow-template/operations/schemas/get_ticket.md +136 -0
- package/skills/create-workflow-template/operations/schemas/get_workspace.md +21 -0
- package/skills/create-workflow-template/operations/schemas/go_back.md +13 -0
- package/skills/create-workflow-template/operations/schemas/http.md +38 -0
- package/skills/create-workflow-template/operations/schemas/hybrid_search.md +144 -0
- package/skills/create-workflow-template/operations/schemas/if_else.md +16 -0
- package/skills/create-workflow-template/operations/schemas/incident_created.md +88 -0
- package/skills/create-workflow-template/operations/schemas/incident_updated.md +126 -0
- package/skills/create-workflow-template/operations/schemas/init_variable.md +67 -0
- package/skills/create-workflow-template/operations/schemas/invoice_created.md +21 -0
- package/skills/create-workflow-template/operations/schemas/invoice_updated.md +41 -0
- package/skills/create-workflow-template/operations/schemas/invoke_code.md +132 -0
- package/skills/create-workflow-template/operations/schemas/issue_created.md +105 -0
- package/skills/create-workflow-template/operations/schemas/issue_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/issue_updated.md +172 -0
- package/skills/create-workflow-template/operations/schemas/link_incident_with_issue.md +14 -0
- package/skills/create-workflow-template/operations/schemas/link_ticket_with_issue.md +14 -0
- package/skills/create-workflow-template/operations/schemas/list_enhancements.md +74 -0
- package/skills/create-workflow-template/operations/schemas/list_issues.md +108 -0
- package/skills/create-workflow-template/operations/schemas/list_sessions.md +79 -0
- package/skills/create-workflow-template/operations/schemas/list_sprint.md +29 -0
- package/skills/create-workflow-template/operations/schemas/list_web_sessions.md +87 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_accounts.md +106 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_articles.md +126 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_customers.md +88 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_dev_users.md +75 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_enhancements.md +112 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_incidents.md +113 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_issues.md +217 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_meetings.md +150 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_opportunity.md +161 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_sprints.md +50 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_tickets.md +203 -0
- package/skills/create-workflow-template/operations/schemas/manual_trigger.md +11 -0
- package/skills/create-workflow-template/operations/schemas/meeting_created.md +116 -0
- package/skills/create-workflow-template/operations/schemas/meeting_updated.md +152 -0
- package/skills/create-workflow-template/operations/schemas/oasis_sql_execute.md +11 -0
- package/skills/create-workflow-template/operations/schemas/opportunity_created.md +92 -0
- package/skills/create-workflow-template/operations/schemas/opportunity_updated.md +124 -0
- package/skills/create-workflow-template/operations/schemas/pick_user.md +16 -0
- package/skills/create-workflow-template/operations/schemas/question_answer_created.md +44 -0
- package/skills/create-workflow-template/operations/schemas/question_answer_updated.md +75 -0
- package/skills/create-workflow-template/operations/schemas/recall_chats.md +13 -0
- package/skills/create-workflow-template/operations/schemas/router.md +15 -0
- package/skills/create-workflow-template/operations/schemas/send_notification.md +19 -0
- package/skills/create-workflow-template/operations/schemas/set_variable.md +67 -0
- package/skills/create-workflow-template/operations/schemas/sleep_for.md +12 -0
- package/skills/create-workflow-template/operations/schemas/sleep_until.md +17 -0
- package/skills/create-workflow-template/operations/schemas/sprint_updated.md +37 -0
- package/skills/create-workflow-template/operations/schemas/suggest_part.md +14 -0
- package/skills/create-workflow-template/operations/schemas/task_updated.md +79 -0
- package/skills/create-workflow-template/operations/schemas/test_example.md +16 -0
- package/skills/create-workflow-template/operations/schemas/ticket_created.md +136 -0
- package/skills/create-workflow-template/operations/schemas/ticket_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/ticket_updated.md +198 -0
- package/skills/create-workflow-template/operations/schemas/timeline_comment_created.md +70 -0
- package/skills/create-workflow-template/operations/schemas/update_account.md +68 -0
- package/skills/create-workflow-template/operations/schemas/update_article.md +95 -0
- package/skills/create-workflow-template/operations/schemas/update_brand.md +44 -0
- package/skills/create-workflow-template/operations/schemas/update_contact.md +53 -0
- package/skills/create-workflow-template/operations/schemas/update_conversation.md +149 -0
- package/skills/create-workflow-template/operations/schemas/update_enhancement.md +64 -0
- package/skills/create-workflow-template/operations/schemas/update_incident.md +156 -0
- package/skills/create-workflow-template/operations/schemas/update_issue.md +173 -0
- package/skills/create-workflow-template/operations/schemas/update_meeting.md +114 -0
- package/skills/create-workflow-template/operations/schemas/update_opportunity.md +137 -0
- package/skills/create-workflow-template/operations/schemas/update_question_answer.md +60 -0
- package/skills/create-workflow-template/operations/schemas/update_ticket.md +188 -0
- package/skills/create-workflow-template/operations/schemas/watch_ticket_for_updates.md +225 -0
- package/skills/create-workflow-template/operations/schemas/web_search.md +17 -0
- package/skills/create-workflow-template/operations/schemas/while.md +24 -0
- package/skills/create-workflow-template/operations/schemas/widget_created.md +75 -0
- package/skills/create-workflow-template/operations/schemas/widget_updated.md +98 -0
- package/skills/create-workflow-template/operations/schemas/workspace_created.md +20 -0
- package/skills/create-workflow-template/operations/triggers.md +1583 -0
- package/skills/customer-brief/customer-brief.md +66 -0
- package/skills/deal-review-meddpicc/deal-review-meddpicc.md +58 -0
- package/skills/next-step-for-opportunity/next-step-for-opportunity.md +55 -0
- package/skills/opportunity-feature-prioritizer/SKILL.md +183 -0
- package/skills/sales-call-plan-coach/sales-call-plan-coach.md +73 -0
- package/skills/sales-context/sales-context.md +44 -0
- package/skills/sales-search-and-lookup/sales-search-and-lookup.md +58 -0
- package/skills/skill-creator/SKILL.md +570 -0
- package/skills/skill-creator/agents/analyzer.md +274 -0
- package/skills/skill-creator/agents/comparator.md +202 -0
- package/skills/skill-creator/agents/grader.md +223 -0
- package/skills/skill-creator/assets/eval_review.html +146 -0
- package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/skills/skill-creator/references/schemas.md +430 -0
- package/skills/skill-creator/references/tool-patterns.md +290 -0
- package/skills/skill-creator/scripts/__init__.py +0 -0
- package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/skills/skill-creator/scripts/generate_report.py +326 -0
- package/skills/skill-creator/scripts/improve_description.py +247 -0
- package/skills/skill-creator/scripts/package_skill.py +136 -0
- package/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/skills/skill-creator/scripts/run_eval.py +310 -0
- package/skills/skill-creator/scripts/run_loop.py +328 -0
- package/skills/skill-creator/scripts/utils.py +47 -0
- package/skills/trace-diagnosis/trace-diagnosis.md +186 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# `update_meeting` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`artifacts`** (`composite`)
|
|
6
|
+
- Composite: `_gen:artifacts`
|
|
7
|
+
- **`set`** (`[]id`) — Sets the IDs to the provided artifact IDs.
|
|
8
|
+
- ID type: `artifact`
|
|
9
|
+
- **`channel`** (`enum`) — The channel of meeting.
|
|
10
|
+
- Allowed: `amazon_connect`, `google_meet`, `offline`, `other`, `teams`, `zoom`
|
|
11
|
+
- **`description`** (`text`) — The description of the meeting.
|
|
12
|
+
- **`ended_date`** (`timestamp`) — Updates the date and time when the meeting ended.
|
|
13
|
+
- **`external_ref`** (`text`) — External Reference for the meeting.
|
|
14
|
+
- **`external_url`** (`text`) — External platform URL of the meeting
|
|
15
|
+
- **`id`** (`id`) **REQUIRED** — The meetings ID.
|
|
16
|
+
- ID type: `meeting`
|
|
17
|
+
- **`members`** (`composite`)
|
|
18
|
+
- Composite: `_gen:members`
|
|
19
|
+
- **`set`** (`[]id`) — Sets the members to the provided user IDs. This must not be empty.
|
|
20
|
+
- ID type: `devu`, `revu`, `svcacc`, `sysu`
|
|
21
|
+
- **`organizer`** (`id`) — The ID of the user who organized the meeting.
|
|
22
|
+
- ID type: `devu`, `revu`, `svcacc`, `sysu`
|
|
23
|
+
- **`scheduled_date`** (`timestamp`) — Updates the date and time when the meeting was scheduled.
|
|
24
|
+
- **`state`** (`enum`) — The state of meeting.
|
|
25
|
+
- Allowed: `canceled`, `completed`, `no_show`, `ongoing`, `rejected`, `rescheduled`, `scheduled`, `waiting`
|
|
26
|
+
- **`title`** (`text`) — The title of the meeting.
|
|
27
|
+
|
|
28
|
+
## Output Port: `output`
|
|
29
|
+
|
|
30
|
+
- **`artifacts`** (`[]composite`)
|
|
31
|
+
- Composite: `_gen:artifact-summary`
|
|
32
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
33
|
+
- **`file`** (`composite`) — Defines a file object.
|
|
34
|
+
- Composite: `_gen:file`
|
|
35
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
36
|
+
- ID type: `artifact`
|
|
37
|
+
- **`channel`** (`enum`) — The channel of meeting.
|
|
38
|
+
- Allowed: `amazon_connect`, `google_meet`, `offline`, `other`, `teams`, `zoom`
|
|
39
|
+
- **`created_by`** (`composite`)
|
|
40
|
+
- Composite: `_gen:created_by`
|
|
41
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
42
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
43
|
+
- **`email`** (`text`) — Email address of the user.
|
|
44
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
45
|
+
- **`state`** (`enum`) — State of the user.
|
|
46
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
47
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
48
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
49
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
50
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
51
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
52
|
+
- **`description`** (`text`) — Description of the meeting.
|
|
53
|
+
- **`direction`** (`enum`) — Direction of meeting - meetings within an organization are internal. Meetings with external customers can be incoming or outgoing depending on who initiates them.
|
|
54
|
+
- Allowed: `incoming`, `internal`, `outgoing`
|
|
55
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
56
|
+
- **`ended_date`** (`timestamp`) — Time at which meeting ended.
|
|
57
|
+
- **`external_ref`** (`text`) — External reference of the meeting. This is the identifier from the meeting channel/provider.
|
|
58
|
+
- **`external_url`** (`text`) — External platform URL of the meeting
|
|
59
|
+
- **`members`** (`[]composite`) **REQUIRED**
|
|
60
|
+
- Composite: `_gen:user-summary`
|
|
61
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
62
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
63
|
+
- **`email`** (`text`) — Email address of the user.
|
|
64
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
|
|
65
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
66
|
+
- **`rev_org`** (`composite`)
|
|
67
|
+
- Composite: `_gen:rev_org`
|
|
68
|
+
- **`state`** (`enum`) — State of the user.
|
|
69
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
70
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
71
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
72
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
73
|
+
- ID type: `devu`, `sysu`, `svcacc`, `revu`
|
|
74
|
+
- **`modified_by`** (`composite`)
|
|
75
|
+
- Composite: `_gen:modified_by`
|
|
76
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
77
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
78
|
+
- **`email`** (`text`) — Email address of the user.
|
|
79
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
80
|
+
- **`state`** (`enum`) — State of the user.
|
|
81
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
82
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
83
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
84
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
85
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
86
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
87
|
+
- **`organizer`** (`composite`)
|
|
88
|
+
- Composite: `_gen:organizer`
|
|
89
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
90
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
91
|
+
- **`email`** (`text`) — Email address of the user.
|
|
92
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
93
|
+
- **`state`** (`enum`) — State of the user.
|
|
94
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
95
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
96
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
97
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
98
|
+
- ID type: `devu`, `sysu`, `svcacc`, `revu`
|
|
99
|
+
- **`scheduled_date`** (`timestamp`) — Time at which meeting was scheduled to start.
|
|
100
|
+
- **`state`** (`enum`) — The state of meeting.
|
|
101
|
+
- Allowed: `canceled`, `completed`, `no_show`, `ongoing`, `rejected`, `rescheduled`, `scheduled`, `waiting`
|
|
102
|
+
- **`tags`** (`[]composite`) — Tags associated with the meeting.
|
|
103
|
+
- Composite: `_gen:tags`
|
|
104
|
+
- **`tag`** (`composite`)
|
|
105
|
+
- Composite: `_gen:tag`
|
|
106
|
+
- **`title`** (`text`) — Title of the meeting object.
|
|
107
|
+
- **`visibility`** (`composite`) — The properties of an enum value.
|
|
108
|
+
- Composite: `_gen:visibility`
|
|
109
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
110
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
111
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
112
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
113
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
114
|
+
- ID type: `meeting`
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# `update_opportunity` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`account`** (`id`) — Updates the account that the opportunity is associated with
|
|
6
|
+
- ID type: `account`
|
|
7
|
+
- **`body`** (`text`) — Updated body of the opportunity object, or unchanged if not provided.
|
|
8
|
+
- Validation: max_len=65536
|
|
9
|
+
- **`contacts`** (`composite`)
|
|
10
|
+
- Composite: `_gen:contacts`
|
|
11
|
+
- **`set`** (`[]id`) **REQUIRED** — Sets the contact IDs to the provided contact IDs.
|
|
12
|
+
- ID type: `revu`
|
|
13
|
+
- **`customer_budget`** (`double`) — Updates the customer budget.
|
|
14
|
+
- **`forecast_category_v2`** (`uenum`) — Forecast category enum ID of an opportunity. The allowed ids can be extended by the user. Stock allowed values: ``` { "id": 1, "label": "Omitted", "ordinal": 1, "overridable": true }, { "id": 2, "label": "Pipeline", "ordinal": 2, "overridable": true }, { "id": 3, "label": "Upside", "ordinal": 3, "overridable": true }, { "id": 4, "label": "Strong Upside", "ordinal": 4, "overridable": true }, { "id": 5, "label": "Commit", "ordinal": 5, "overridable": true }, { "id": 6, "label": "Won", "ordinal": 6, "overridable": true } ```
|
|
15
|
+
- **`owned_by`** (`composite`)
|
|
16
|
+
- Composite: `_gen:owned_by`
|
|
17
|
+
- **`set`** (`[]id`) — Sets the owner IDs to the provided user IDs. This must not be empty.
|
|
18
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
19
|
+
- **`probability`** (`double`) — Updates the probability of winning the deal, lies between 0 to 100.
|
|
20
|
+
- **`reported_by`** (`composite`)
|
|
21
|
+
- Composite: `_gen:reported_by`
|
|
22
|
+
- **`set`** (`[]id`) — Sets the users that reported the work to the provided user IDs.
|
|
23
|
+
- ID type: `devu`, `revu`, `svcacc`, `sysu`
|
|
24
|
+
- **`tags`** (`composite`)
|
|
25
|
+
- Composite: `_gen:tags`
|
|
26
|
+
- **`add`** (`[]composite`) — Adds the provided tags on the opportunity. Note: Provide either 'add' or 'remove' but not both.
|
|
27
|
+
- Composite: `_gen:add`
|
|
28
|
+
- **`remove`** (`[]composite`) — Removes the provided tags on the opportunity. Note: Provide either 'add' or 'remove' but not both.
|
|
29
|
+
- Composite: `_gen:remove`
|
|
30
|
+
- **`target_close_date`** (`timestamp`) — Updates the timestamp for when the opportunity is expected to be complete.
|
|
31
|
+
- **`title`** (`text`) — Updated title of the opportunity object, or unchanged if not provided.
|
|
32
|
+
- Validation: min_len=1, max_len=256
|
|
33
|
+
- **`value`** (`composite`) — The value of the opportunity in USD.
|
|
34
|
+
- Composite: `_gen:value`
|
|
35
|
+
- **`amount`** (`text`) **REQUIRED** — The amount.
|
|
36
|
+
- **`currency`** (`text`) **REQUIRED** — The currency code conforming ISO 4217 standard.
|
|
37
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
38
|
+
- ID type: `opportunity`
|
|
39
|
+
- **`stage`** (`id`) — The stage of the opportunity.
|
|
40
|
+
- ID type: `custom_stage`
|
|
41
|
+
- **`annual_contract_value`** (`composite`) — Annual contract value of an opportunity in USD
|
|
42
|
+
- Composite: `_gen:annual_contract_value`
|
|
43
|
+
- **`amount`** (`text`) — The amount of money associated with the contract.
|
|
44
|
+
- **`currency`** (`text`) — The currency code conforming ISO 4217 standard.
|
|
45
|
+
|
|
46
|
+
## Output Port: `output`
|
|
47
|
+
|
|
48
|
+
- **`account`** (`composite`)
|
|
49
|
+
- Composite: `_gen:account`
|
|
50
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
51
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
52
|
+
- **`id`** (`id`) **REQUIRED** — ID of an account.
|
|
53
|
+
- ID type: `account`
|
|
54
|
+
- **`actual_close_date`** (`timestamp`) — Timestamp when the opportunity was actually closed.
|
|
55
|
+
- **`annual_contract_value`** (`composite`) — Annual contract value of an opportunity in USD
|
|
56
|
+
- Composite: `_gen:annual_contract_value`
|
|
57
|
+
- **`amount`** (`text`) — Amount of the money.
|
|
58
|
+
- **`currency`** (`text`) — Currency of the money.
|
|
59
|
+
- **`body`** (`text`) — The description of the opportunity.
|
|
60
|
+
- **`created_by`** (`composite`)
|
|
61
|
+
- Composite: `_gen:created_by`
|
|
62
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
63
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
64
|
+
- **`display_picture`** (`composite`)
|
|
65
|
+
- Composite: `_gen:display_picture`
|
|
66
|
+
- **`email`** (`text`) — Email address of the user.
|
|
67
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
68
|
+
- **`state`** (`enum`) — State of the user.
|
|
69
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
70
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
71
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
72
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
73
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
74
|
+
- **`created_date`** (`timestamp`) — Timestamp when the opportunity was created.
|
|
75
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
76
|
+
- **`external_ref`** (`text`) — An opaque key that's associated with the work item that's guaranteed to be unique across all work items of same type (issue, ticket, etc).
|
|
77
|
+
- **`forecast_category_v2`** (`composite`) — The properties of an enum value.
|
|
78
|
+
- Composite: `_gen:forecast_category_v2`
|
|
79
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
80
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
81
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
82
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
83
|
+
- **`modified_by`** (`composite`)
|
|
84
|
+
- Composite: `_gen:modified_by`
|
|
85
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
86
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
87
|
+
- **`display_picture`** (`composite`)
|
|
88
|
+
- Composite: `_gen:display_picture`
|
|
89
|
+
- **`email`** (`text`) — Email address of the user.
|
|
90
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
91
|
+
- **`state`** (`enum`) — State of the user.
|
|
92
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
93
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
94
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
95
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
96
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
97
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the opportunity was last modified.
|
|
98
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
99
|
+
- Composite: `_gen:user-summary`
|
|
100
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
101
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
102
|
+
- **`email`** (`text`) — Email address of the user.
|
|
103
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
104
|
+
- **`state`** (`enum`) — State of the user.
|
|
105
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
106
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
107
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
108
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
109
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
110
|
+
- **`reported_by`** (`[]composite`)
|
|
111
|
+
- Composite: `_gen:user-summary`
|
|
112
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
113
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
114
|
+
- **`email`** (`text`) — Email address of the user.
|
|
115
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
116
|
+
- **`state`** (`enum`) — State of the user.
|
|
117
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
118
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
119
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
120
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
121
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
122
|
+
- **`stage`** (`composite`) — Describes the current stage of a opportunity
|
|
123
|
+
- Composite: `_gen:stage`
|
|
124
|
+
- **`name`** (`text`) **REQUIRED** — Describes the current stage of a opportunity
|
|
125
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
126
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
127
|
+
- Composite: `_gen:tags`
|
|
128
|
+
- **`tag`** (`composite`)
|
|
129
|
+
- Composite: `_gen:tag`
|
|
130
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the opportunity is expected to be closed.
|
|
131
|
+
- **`title`** (`text`) **REQUIRED** — Title of the opportunity.
|
|
132
|
+
- **`value`** (`composite`) — The value of the opportunity in USD.
|
|
133
|
+
- Composite: `_gen:value`
|
|
134
|
+
- **`amount`** (`text`) — Amount of the money.
|
|
135
|
+
- **`currency`** (`text`) — Currency of the money.
|
|
136
|
+
- **`id`** (`id`) **REQUIRED** — The opportunity which was updated.
|
|
137
|
+
- ID type: `opportunity`
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# `update_question_answer` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`access_level`** (`enum`)
|
|
6
|
+
- Allowed: `external`, `internal`, `private`, `public`, `restricted`
|
|
7
|
+
- **`answer`** (`text`) — Updates answer of the question-answer object, or unchanged if not provided.
|
|
8
|
+
- **`applies_to_parts`** (`composite`)
|
|
9
|
+
- Composite: `_gen:applies_to_parts`
|
|
10
|
+
- **`set`** (`[]id`) — Updates the parts that the question-answer applies to.
|
|
11
|
+
- ID type: `capability`, `component`, `custom_part`, `enhancement`, `feature`, `linkable`, `microservice`, `product`, `runnable`
|
|
12
|
+
- **`id`** (`id`) **REQUIRED** — The question-answer's ID.
|
|
13
|
+
- ID type: `question_answer`
|
|
14
|
+
- **`owned_by`** (`composite`)
|
|
15
|
+
- Composite: `_gen:owned_by`
|
|
16
|
+
- **`set`** (`[]id`) — Sets the owner IDs to the provided user IDs. This must not be empty.
|
|
17
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
18
|
+
- **`question`** (`text`) — Updates question of the question-answer object, or unchanged if not provided.
|
|
19
|
+
- **`sources`** (`composite`)
|
|
20
|
+
- Composite: `_gen:sources`
|
|
21
|
+
- **`set`** (`[]id`) — Sets the sources that generated the question-answer.
|
|
22
|
+
- ID type: `conversation`
|
|
23
|
+
- **`status`** (`enum`) — Status of the question answer.
|
|
24
|
+
- Allowed: `archived`, `discarded`, `draft`, `published`, `review_needed`
|
|
25
|
+
|
|
26
|
+
## Output Port: `output`
|
|
27
|
+
|
|
28
|
+
- **`answer`** (`text`) — The Answer.
|
|
29
|
+
- **`created_by`** (`composite`)
|
|
30
|
+
- Composite: `_gen:created_by`
|
|
31
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
32
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
33
|
+
- **`email`** (`text`) — Email address of the user.
|
|
34
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
35
|
+
- **`state`** (`enum`) — State of the user.
|
|
36
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
37
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
38
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
39
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
40
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
41
|
+
- **`created_date`** (`timestamp`) — Timestamp when the QA was created.
|
|
42
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
43
|
+
- **`modified_by`** (`composite`)
|
|
44
|
+
- Composite: `_gen:modified_by`
|
|
45
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
46
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
47
|
+
- **`email`** (`text`) — Email address of the user.
|
|
48
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
49
|
+
- **`state`** (`enum`) — State of the user.
|
|
50
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
51
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
52
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
53
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
54
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
55
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the QA was modified.
|
|
56
|
+
- **`question`** (`text`) — The Question.
|
|
57
|
+
- **`status`** (`enum`) — Status of the question answer.
|
|
58
|
+
- Allowed: `archived`, `discarded`, `draft`, `published`, `review_needed`
|
|
59
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the created QA.
|
|
60
|
+
- ID type: `question_answer`
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
# `update_ticket` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the ticket.
|
|
6
|
+
- ID type: `ticket`
|
|
7
|
+
- **`title`** (`text`) — Updated title of the ticket, or unchanged if not provided.
|
|
8
|
+
- Validation: min_len=1, max_len=256
|
|
9
|
+
- **`body`** (`text`) — Updated body of the ticket, or unchanged if not provided.
|
|
10
|
+
- Validation: max_len=65536
|
|
11
|
+
- **`group`** (`id`) — Updates the group that the ticket is associated with.
|
|
12
|
+
- ID type: `group`
|
|
13
|
+
- **`owned_by`** (`composite`)
|
|
14
|
+
- Composite: `_gen:owned_by`
|
|
15
|
+
- **`set`** (`[]id`) — Sets the owner IDs to the provided user IDs. This must not be empty.
|
|
16
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
17
|
+
- **`applies_to_part`** (`id`) — Updates the part that the ticket applies to.
|
|
18
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
19
|
+
- **`severity`** (`enum`) — Severity of the ticket.
|
|
20
|
+
- Allowed: `blocker`, `high`, `low`, `medium`
|
|
21
|
+
- **`is_spam`** (`bool`) — Updates whether the ticket is spam.
|
|
22
|
+
- **`needs_response`** (`bool`) — Updates whether the ticket needs a response.
|
|
23
|
+
- **`reported_by`** (`composite`)
|
|
24
|
+
- Composite: `_gen:reported_by`
|
|
25
|
+
- **`set`** (`[]id`) — Sets the users that reported the work to the provided user IDs.
|
|
26
|
+
- ID type: `devu`, `sysu`, `svcacc`, `revu`
|
|
27
|
+
- **`rev_org`** (`id`) — Updates the workspace that the ticket is associated with.
|
|
28
|
+
- ID type: `revo`
|
|
29
|
+
- **`tags`** (`composite`)
|
|
30
|
+
- Composite: `_gen:tags`
|
|
31
|
+
- **`add`** (`[]composite`) — Adds the provided tags on the ticket. Note: Provide either 'add' or 'remove' but not both.
|
|
32
|
+
- Composite: `_gen:add`
|
|
33
|
+
- **`remove`** (`[]composite`) — Removes the provided tags on the ticket. Note: Provide either 'add' or 'remove' but not both.
|
|
34
|
+
- Composite: `_gen:remove`
|
|
35
|
+
- **`target_close_date`** (`timestamp`) — Updates the timestamp for when the ticket is expected to be complete.
|
|
36
|
+
- **`account`** (`id`) — Updates the account that the ticket is associated with.
|
|
37
|
+
- ID type: `account`
|
|
38
|
+
- **`channels`** (`composite`)
|
|
39
|
+
- Composite: `_gen:channels`
|
|
40
|
+
- **`set`** (`[]enum`) — Sets the channels to the provided channels.
|
|
41
|
+
- Allowed: `email`, `plug`, `slack`, `twilio`, `twilio_sms`
|
|
42
|
+
- **`is_frozen`** (`bool`) — Whether the ticket is frozen.
|
|
43
|
+
- **`sentiment`** (`uenum`) — The sentiment of the ticket.
|
|
44
|
+
- **`sentiment_modified_date`** (`timestamp`) — Timestamp at which sentiment was last modified.
|
|
45
|
+
- **`sentiment_summary`** (`text`) — Summary justifying the current sentiment.
|
|
46
|
+
- **`stage`** (`id`) — The stage of the ticket.
|
|
47
|
+
- ID type: `custom_stage`
|
|
48
|
+
- **`visibility`** (`uenum`) — Visibility enum ID of the ticket. Choose 'internal' for tickets only visible to your team members, or 'external' for tickets that can be shared with customers and external stakeholders.
|
|
49
|
+
|
|
50
|
+
## Output Port: `output`
|
|
51
|
+
|
|
52
|
+
- **`account`** (`composite`)
|
|
53
|
+
- Composite: `_gen:account`
|
|
54
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
55
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
56
|
+
- **`id`** (`id`) **REQUIRED** — The id of the account.
|
|
57
|
+
- ID type: `account`
|
|
58
|
+
- **`actual_close_date`** (`timestamp`) — Timestamp when the work was actually completed.
|
|
59
|
+
- **`applies_to_part`** (`composite`)
|
|
60
|
+
- Composite: `_gen:applies_to_part`
|
|
61
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
62
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
63
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
64
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
65
|
+
- **`id`** (`id`) **REQUIRED** — The id of the part.
|
|
66
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
67
|
+
- **`body`** (`text`) — The body of the ticket.
|
|
68
|
+
- **`channels`** (`[]enum`) — Channels of the ticket.
|
|
69
|
+
- Allowed: `email`, `plug`, `slack`, `twilio`, `twilio_sms`
|
|
70
|
+
- **`created_by`** (`composite`)
|
|
71
|
+
- Composite: `_gen:created_by`
|
|
72
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
73
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
74
|
+
- **`display_picture`** (`composite`)
|
|
75
|
+
- Composite: `_gen:display_picture`
|
|
76
|
+
- **`email`** (`text`) — Email address of the user.
|
|
77
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
|
|
78
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
79
|
+
- **`rev_org`** (`composite`)
|
|
80
|
+
- Composite: `_gen:rev_org`
|
|
81
|
+
- **`state`** (`enum`) — State of the user.
|
|
82
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
83
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
84
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
85
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user
|
|
86
|
+
- ID type: `devu`, `sysu`, `svcacc`, `revu`
|
|
87
|
+
- **`created_date`** (`timestamp`) — Timestamp when the ticket was created.
|
|
88
|
+
- **`display_id`** (`text`) — Display ID of the ticket.
|
|
89
|
+
- **`external_ref`** (`text`) — An opaque key that's associated with the work item that's guaranteed to be unique across all work items of same type (issue, ticket, etc).
|
|
90
|
+
- **`group`** (`composite`)
|
|
91
|
+
- Composite: `_gen:group`
|
|
92
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
93
|
+
- **`id`** (`id`) **REQUIRED** — The id of the group
|
|
94
|
+
- ID type: `group`
|
|
95
|
+
- **`is_frozen`** (`bool`) — Whether the object is frozen or not.
|
|
96
|
+
- **`is_spam`** (`bool`) — Whether the ticket is spam.
|
|
97
|
+
- **`modified_by`** (`composite`)
|
|
98
|
+
- Composite: `_gen:modified_by`
|
|
99
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
100
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
101
|
+
- **`display_picture`** (`composite`)
|
|
102
|
+
- Composite: `_gen:display_picture`
|
|
103
|
+
- **`email`** (`text`) — Email address of the user.
|
|
104
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
|
|
105
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
106
|
+
- **`rev_org`** (`composite`)
|
|
107
|
+
- Composite: `_gen:rev_org`
|
|
108
|
+
- **`state`** (`enum`) — State of the user.
|
|
109
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
110
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
111
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
112
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
113
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
114
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the ticket was modified.
|
|
115
|
+
- **`needs_response`** (`bool`) — Whether the ticket needs a response.
|
|
116
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
117
|
+
- Composite: `_gen:user-summary`
|
|
118
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
119
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
120
|
+
- **`display_picture`** (`composite`)
|
|
121
|
+
- Composite: `_gen:display_picture`
|
|
122
|
+
- **`email`** (`text`) — Email address of the user.
|
|
123
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
|
|
124
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
125
|
+
- **`rev_org`** (`composite`)
|
|
126
|
+
- Composite: `_gen:rev_org`
|
|
127
|
+
- **`state`** (`enum`) — State of the user.
|
|
128
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
129
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
130
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
131
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
132
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
133
|
+
- **`reported_by`** (`[]composite`)
|
|
134
|
+
- Composite: `_gen:user-summary`
|
|
135
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
136
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
137
|
+
- **`display_picture`** (`composite`)
|
|
138
|
+
- Composite: `_gen:display_picture`
|
|
139
|
+
- **`email`** (`text`) — Email address of the user.
|
|
140
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
|
|
141
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
142
|
+
- **`rev_org`** (`composite`)
|
|
143
|
+
- Composite: `_gen:rev_org`
|
|
144
|
+
- **`state`** (`enum`) — State of the user.
|
|
145
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
146
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
147
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
148
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
149
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
150
|
+
- **`rev_org`** (`composite`)
|
|
151
|
+
- Composite: `_gen:rev_org`
|
|
152
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
153
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
154
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
155
|
+
- Allowed: `account`, `rev_org`
|
|
156
|
+
- **`id`** (`id`) **REQUIRED** — The id of the workspace.
|
|
157
|
+
- ID type: `revo`
|
|
158
|
+
- **`sentiment`** (`composite`) — The properties of an enum value.
|
|
159
|
+
- Composite: `_gen:sentiment`
|
|
160
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
161
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
162
|
+
- **`label`** (`enum`) **REQUIRED** — The display label of the enum value.
|
|
163
|
+
- Allowed: `Delighted`, `Happy`, `Neutral`, `Unhappy`, `Frustrated`
|
|
164
|
+
- **`sentiment_modified_date`** (`timestamp`) — Timestamp when the sentiment was last modified.
|
|
165
|
+
- **`sentiment_summary`** (`text`) — Summary justifying the sentiment.
|
|
166
|
+
- **`severity`** (`enum`) — Severity of the ticket.
|
|
167
|
+
- Allowed: `blocker`, `high`, `low`, `medium`
|
|
168
|
+
- **`source_channel`** (`text`) — Source channel of the ticket.
|
|
169
|
+
- **`stage`** (`composite`) — Current stage of the ticket.
|
|
170
|
+
- Composite: `_gen:stage`
|
|
171
|
+
- **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
|
|
172
|
+
- **`stage`** (`composite`) — The stage of the ticket.
|
|
173
|
+
- Composite: `stage.stage`
|
|
174
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
175
|
+
- **`tags`** (`[]composite`) — Tags associated with the ticket.
|
|
176
|
+
- Composite: `_gen:tags`
|
|
177
|
+
- **`tag`** (`composite`)
|
|
178
|
+
- Composite: `_gen:tag`
|
|
179
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the ticket is expected to be complete.
|
|
180
|
+
- **`title`** (`text`) **REQUIRED** — Title of the ticket.
|
|
181
|
+
- **`visibility`** (`composite`) — The properties of an enum value.
|
|
182
|
+
- Composite: `_gen:visibility`
|
|
183
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
184
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
185
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
186
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
187
|
+
- **`id`** (`id`) **REQUIRED** — The id of the ticket.
|
|
188
|
+
- ID type: `ticket`
|