with neetoCal and KingSumo?
List contestants for specified giveaway. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
neetocal: {
type: "app",
app: "neetocal",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.neetocal.$auth.subdomain}.neetocal.com/api/external/v1/bookings`,
headers: {
"x-api-key": `${this.neetocal.$auth.api_key}`,
},
})
},
})
The KingSumo API enables you to automate your giveaways and contests, simplifying the process of managing entries, winners, and related analytics. With Pipedream, you can build workflows that interact with the KingSumo API to create entries, fetch winners, and integrate these actions with other apps for enhanced functionality such as email notifications, CRM updates, and social media engagement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kingsumo: {
type: "app",
app: "kingsumo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.kingsumo.com/me`,
headers: {
Authorization: `Bearer ${this.kingsumo.$auth.oauth_access_token}`,
},
})
},
})