with Successeve and Microbilt Developer?
The Successeve API is a tool for managing events, attendees, and ticketing. It's built to simplify the process of organizing events and handling participant engagement. On Pipedream, you can leverage this API to automate event-related tasks, sync data with other services like CRM platforms, or trigger communications based on event activities. By connecting Successeve to various apps on Pipedream, you can create seamless workflows to enhance event management efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
successeve: {
type: "app",
app: "successeve",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.salesmachine.io/v1/ping`,
params: {
api_token: `${this.successeve.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microbilt_developer: {
type: "app",
app: "microbilt_developer",
}
},
async run({steps, $}) {
const data = {
"Address": {
"Addr1": "1640 Airport Road #115",
"City": "Kennesaw",
"State": "GA",
"Zip": "30144"
}
}
return await axios($, {
method: "post",
url: `https://${this.microbilt_developer.$auth.environment}.microbilt.com/AddressStandardization`,
headers: {
Authorization: `Bearer ${this.microbilt_developer.$auth.oauth_access_token}`,
"content-type": `application/json`,
"accept": `application/json`,
},
data,
})
},
})