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}`,
},
})
},
})
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
fynk uses API keys for authentication. When you connect your fynk account, Pipedream securely stores the keys so you can easily authenticate to fynk APIs in both code and no-code steps.