Marketing project management software designed just for creative teams.
The Workamajig API allows for automation and integration of project management tasks within the Workamajig platform. Using Pipedream, developers can create workflows to manage projects, resources, and client accounts by triggering events, syncing data, and automating processes. Pipedream's serverless platform enables the execution of these workflows on demand or on a schedule, making it possible to connect Workamajig with other apps and services to streamline operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
workamajig: {
type: "app",
app: "workamajig",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app6.workamajig.com/api/beta1/contacts/search`,
headers: {
"APIAccessToken": `${this.workamajig.$auth.api_access_token}`,
"UserToken": `${this.workamajig.$auth.user_token}`,
},
params: {
name: `John`, //E.g. John
},
})
},
})
The ServiceNow API lets developers access and manipulate records, manage workflows, and integrate with other services on its IT service management platform. These capabilities support automating tasks, syncing data across platforms, and boosting operational efficiencies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
servicenow: {
type: "app",
app: "servicenow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
headers: {
Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
},
})
},
})