import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
draftable: {
type: "app",
app: "draftable",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.draftable.com/v1/comparisons/[ACCOUNT_ID]/[IDENTIFIER]`,
headers: {
"Authorization": `Token ${this.draftable.$auth.token}`,
},
})
},
})
Draftable uses API keys for authentication. When you connect your Draftable account, Pipedream securely stores the keys so you can easily authenticate to Draftable APIs in both code and no-code steps.
Authenticate with your testing auth token in development, and your live auth token in production.