ftrack, a Backlight business, is the creator of Emmy and Academy Award-winning team collaboration and media review platforms for the creative industries.
Go to siteimport { 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: []
})
},
})
Triggered when the status of an item is changed. See the documentation
FTrack uses API keys for authentication. When you connect your FTrack account, Pipedream securely stores the keys so you can easily authenticate to FTrack APIs in both code and no-code steps.
To connect FTrack, you will need an FTrack Studio account.
To retrieve your Username and API Key,
For Username:
There are two types of API Keys, Personal and Global.
For Personal API Key:
For Global API Key:
Your subdomain is 1234
if your ftrack URL is https://1234.ftrackapp.com