with Capsule and Plainly?
Creates a render job for a video template. See the documentation
Retrieves the current status of a render job in Plainly. See the documentation
Fetches a list of available video templates in a project in the user's Plainly account. See the documentation
The Capsule API provides access to a treasure trove of customer relationship management (CRM) functions. Through Pipedream's serverless platform, it becomes fantastically simple to automate interactions with your Capsule CRM data. Envision syncing contacts, managing cases, tracking sales opportunities, or even automating follow-up emails based on customer behavior. The workflows created can be both time-saving and insightful, providing not just automation but also analytics on customer engagements.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
capsule: {
type: "app",
app: "capsule",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.capsulecrm.com/api/v2/users/current`,
headers: {
Authorization: `Bearer ${this.capsule.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
plainly: {
type: "app",
app: "plainly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.plainlyvideos.com/api/v2/projects`,
auth: {
username: `${this.plainly.$auth.api_key}`,
password: ``,
},
})
},
})