ftrack, a Backlight business, is the creator of Emmy and Academy Award-winning team collaboration and media review platforms for the creative industries.
The FTrack API is a powerhouse for creative project management, enabling users to automate and integrate a wide array of tasks related to project tracking, asset management, and team collaboration. With Pipedream, you can harness this API to create custom workflows that trigger actions within FTrack or connect it with other apps to streamline your creative operations. It's a toolset for improving efficiency by automating repetitive tasks, syncing data across applications, and orchestrating complex project management activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ftrack: {
type: "app",
app: "ftrack",
}
},
async run({steps, $}) {
return await axios($, {
method: "POST",
url: `https://${this.ftrack.$auth.subdomain}.ftrackapp.com/api`,
headers: {
"Content-Type": `application/json`,
"ftrack-user": `${this.ftrack.$auth.username}`,
"ftrack-api-key": `${this.ftrack.$auth.api_key}`,
},
data: []
})
},
})
The Zendesk API enables seamless integration of Zendesk's customer service platform with your existing business processes and third-party applications. By leveraging this API with Pipedream, you can automate ticket tracking, sync customer data, escalate issues, and streamline communication across multiple channels. This can significantly increase efficiency, accelerate response times, and enhance the overall customer experience. Automations can range from simple notifications to complex workflows involving data transformation and multi-step actions across various services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zendesk: {
type: "app",
app: "zendesk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.zendesk.$auth.subdomain}.zendesk.com/api/v2/users/me/`,
headers: {
Authorization: `Bearer ${this.zendesk.$auth.oauth_access_token}`,
},
})
},
})