Gatekeeper is a next generation contract and supplier management platform that was born in the cloud and works on any device.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gatekeeper: {
type: "app",
app: "gatekeeper",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.gatekeeper.$auth.subdomain}.gatekeeperhq.com/api/suppliers`,
headers: {
Authorization: `Bearer ${this.gatekeeper.$auth.auth_token}`,
},
})
},
})
Gatekeeper uses API keys for authentication. When you connect your Gatekeeper account, Pipedream securely stores the keys so you can easily authenticate to Gatekeeper APIs in both code and no-code steps.
To connect Pipedream to Gatekeeper,
subdomain
: if your Gatekeeper customer instance URL is https://eu.gatekeeperhq.com
, your subdomain
is eu