Accredible is the industry-leading digital credentialing platform. Securely issue, manage, track, and verify your credentials faster and more easily for a fraction of the cost.
Go to siteThe Accredible API lets you automate the creation and management of digital certificates, badges, and blockchain credentials. Using Pipedream, you can connect the Accredible API to myriad services for streamlined workflow automation. Create digital certificates when a student completes a course, update credentials with new information, or share achievements across social platforms or via email. Pipedream's serverless platform enables you to integrate these actions with other apps, such as learning management systems, CRMs, and communication tools, without writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
accredible: {
type: "app",
app: "accredible",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.accredible.com/v1/issuer/details`,
headers: {
"Content-Type": `application/json`,
"Authorization": `Token token=${this.accredible.$auth.api_key}`,
},
})
},
})
Automate Certificate Issuance after Course Completion: Trigger a Pipedream workflow when a student finishes a course in a Learning Management System like Teachable or Thinkific. The workflow would then call the Accredible API to issue a certificate and email it directly to the student.
Bulk Update Credentials: Use a webhook to listen for updates from your database or a Google Sheet. When data changes, the Pipedream workflow utilizes the Accredible API to update credentials in bulk, ensuring all information reflects the most current status.
Share Credentials on Social Media: After a certificate is created, trigger a Pipedream workflow that posts a congratulatory message along with the credential link on the recipient's LinkedIn profile through the LinkedIn API, broadening the reach and recognition of their achievement.
This source triggers when a new credential is issued to a recipient. See the documentation.
Emit new event when an existing credential's details are updated or modified. See the documentation.
Issue a new credential to a given recipient. See the documentation
Remove a specific credential from the system. See the documentation
Modify the details of an existing credential. See the documentation
Accredible uses API keys for authentication. When you connect your Accredible account, Pipedream securely stores the keys so you can easily authenticate to Accredible APIs in both code and no-code steps.
To retrieve your API key,