PartnerStack does more than manage your partnerships — it builds new revenue channels by empowering every partner to succeed.
Go to sitePartnerStack provides an API that allows developers to easily integrate the power of partnerships into their products. With the Partner API, developers can create various kinds of integrations to help drive products, strengthen partnerships, and create comprehensive marketing campaigns. Below are a few examples of what you can build with the Partner API.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
partnerstack: {
type: "app",
app: "partnerstack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.partnerstack.com/api/v2/partnerships`,
headers: {
Authorization: `Bearer ${this.partnerstack.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
PartnerStack (Partner API) uses API keys for authentication. When you connect your PartnerStack (Partner API) account, Pipedream securely stores the keys so you can easily authenticate to PartnerStack (Partner API) APIs in both code and no-code steps.
You can find your API keys by logging in to your Partner dashboard and navigating to "Settings" -> "API". Click the Reveal button to expose the API key.