with fynk and Schedule?
Create a new contract in Fynk based on an existing template. See the documentation
Move a contract forward in Fynk's lifecycle. See documentation pages move document to review stage and move document to signing stage
Update metadata values or dynamic fields associated with a contract in Fynk. See the documentation
Update the details of a party associated with a contract in Fynk. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fynk: {
type: "app",
app: "fynk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.fynk.com/v1/api/me`,
headers: {
Authorization: `Bearer ${this.fynk.$auth.api_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.