-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Description
jira_service_desk
URLs
Polling Sources
new-request-created
Create a source that triggers when a new customer request is created.
- https://docs.atlassian.com/jira-servicedesk/REST/3.6.2/#servicedeskapi/request-getMyCustomerRequests
request-updated
Create a source that triggers when a customer request is updated.
- https://docs.atlassian.com/jira-servicedesk/REST/3.6.2/#servicedeskapi/request-getMyCustomerRequests
Actions
create-request
Create an action that creates a customer request. A separate component method should be created to call the axios module, instead of calling it directly within the run method. This separate method should receive the $ variable from the run method, in order to pass it as the first parameter to axios. When calling a component method with multiple parameters, you should pass them as a single object, using the Javascript spread syntax and destructuring when able. Do not use return await when returning a call to the axios module, instead simply return it without the await keyword.
- https://docs.atlassian.com/jira-servicedesk/REST/3.6.2/#servicedeskapi/request-createCustomerRequest
comment-on-request
Create an action that creates comment on a customer request. A separate component method should be created to call the axios module, instead of calling it directly within the run method. This separate method should receive the $ variable from the run method, in order to pass it as the first parameter to axios. When calling a component method with multiple parameters, you should pass them as a single object, using the Javascript spread syntax and destructuring when able. Do not use return await when returning a call to the axios module, instead simply return it without the await keyword.