import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adrapid: {
type: "app",
app: "adrapid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.adrapid.com/me`,
headers: {
Authorization: `Bearer ${this.adrapid.$auth.api_token}`,
},
})
},
})
Generates a new banner using provided data. This action can create different types of banners, such as animated HTML5, image, or video banners. See the documentation
Retrieves a specified banner. This action should be used after a 'create-banner' action to ensure that the banner is fully processed and ready for use. See the documentation
Adrapid uses API keys for authentication. When you connect your Adrapid account, Pipedream securely stores the keys so you can easily authenticate to Adrapid APIs in both code and no-code steps.