with VectorShift and Jira Service Desk?
Emit new event when a customer request is created. See the documentation
Emit new event when a knowledge base is created in Vectorshift.
Emit new event when a customer request is updated. See the documentation
Emit new event when a new pipeline is created in VectorShift.
Adds data to a knowledge base in VectorShift. See the documentation
Create a comment on a customer request. See the documentation
Creates a new pipeline in VectorShift. See the documentation
Executes a VectorShift pipeline with specified inputs. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vectorshift: {
type: "app",
app: "vectorshift",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vectorshift.ai/v1/pipelines`,
headers: {
Authorization: `Bearer ${this.vectorshift.$auth.api_key}`,
},
})
},
})
The Jira Service Desk API allows you to interact programmatically with your support ticket system, enabling the creation, updating, and management of tickets, customers, and service desk configurations. With Pipedream's integration, you can automate workflows by connecting Jira Service Desk to hundreds of other apps, listen to webhooks for real-time triggers, and execute custom logic.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jira_service_desk: {
type: "app",
app: "jira_service_desk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.atlassian.com/me`,
headers: {
Authorization: `Bearer ${this.jira_service_desk.$auth.oauth_access_token}`,
},
})
},
})