Verifiable Credential Management
Issue a Verifiable Credential:
const credential = await axesConnect.credentials.issue({
vcId: 'credentialId',
credentialSubject: 'did:axes:subject',
issuedAt: new Date().toISOString(),
expiration: '2025-01-01T00:00:00Z'
});
Revoke a credential:
await axesConnect.credentials.revoke('credentialId');
Check credential status:
const isRevoked = await axesConnect.credentials.checkStatus('credentialId');
Last updated