API Reference
π Quick Start The Akowe Issuance API & SDK allows you to design, issue, and manage certificates with minimal setup.
Last updated
<script src="https://issuance.akowe.app/sdk"></script>
<script>
const certApp = new CertificateSDK({
onLoad: (res) => {
console.log("SDK Loaded:", res);
},
onCreateCompleted: (data) => {
console.log("New template created:", data);
// Send this `data` to your Template Create API
},
onEditCompleted: (data) => {
console.log("Template edited:", data);
// Send this `data` to your Template Edit API
},
onClose: () => {
console.log("Modal closed");
// Call this when after a successful request to template Create or Edit endpoint
},
onError: (err) => {
console.error("SDK error:", err);
}
});
</script>