Making Requests
Create a Certificate Authority
const payload = {
wa : "wallet_address",
admin_email : "admin_email"
}
createCA(payload)
.then(response => console.log('CA Created:', response))
.catch(error => console.error('Error creating CA:', error));Name
Type
Description
Create Certificate Templates
const payload = {
cid: 'cid_value',
name: 'template_name',
waAdmin: 'waAdmin_value',
frontendProps: {
components: [
{
id: 'component_id'
...
type: 'text',
}
],
currentLayout: 'current_layout'
}
}
createTemplate(payload)
.then(response => console.log('Template Created:', response))
.catch(error => console.error('Error creating template:', error));Name
Type
Description
Name
Type
Description
Name
Type
Description
Issue Certificates
Name
Type
Description
Verify Certificates
Name
Type
Description
Last updated