Multi Location Marketing (Done Right). Grow 10's or 1000's of locations with the same effort as promoting one.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
referrizer: {
type: "app",
app: "referrizer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.referrizer.com/v1/contacts`,
headers: {
Authorization: `Bearer ${this.referrizer.$auth.api_token}`,
"Accept": `application/json`,
},
})
},
})
Referrizer uses API keys for authentication. When you connect your Referrizer account, Pipedream securely stores the keys so you can easily authenticate to Referrizer APIs in both code and no-code steps.
Sign in and copy your API Token from Apps / Integration settings.