Certifier is an award-winning digital credentialing platform trusted by over 1000 companies and organizations. Seamlessly create, issue, manage, and track certificates and badges to enhance participant engagement and recognition across educational programs, events, and training sessions.
Adds a contact to a specific static list. See the documentation
Create, issue and send a credential to a recipient. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Certifier is a comprehensive SaaS platform that streamlines and automates the process of issuing and managing digital credentials. With its intuitive API, Certifier allows organizations to effortlessly generate, distribute, and monitor credentials, enhancing efficiency, security, and compliance in a variety of industries.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
certifier: {
type: "app",
app: "certifier",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.certifier.io/v1/credentials`,
headers: {
Authorization: `Bearer ${this.certifier.$auth.access_token}`,
"Certifier-Version": `2022-10-26`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})