Notifications & Webhooks
Reading Notifications
Get Notifications (Paginated)
const result = await learnCard.invoke.getNotifications(
{ limit: 20, sort: 'REVERSE_CHRONOLOGICAL' },
{ read: false, archived: false } // optional filters
);
console.log(result.notifications); // Array of notifications
console.log(result.hasMore); // Boolean indicating more pages
console.log(result.cursor); // Cursor for next pageQuery Notifications
Update Notification
Mark All Read
Architecture
Configuration
Payload Reference
Connection Request
Connection Accepted
Credential Received
Boost Received
Boost Accepted
Presentation Received
Consent Flow Transaction
Consent
Re-Consent
Updated Terms
Withdrawn Consent
Last updated
Was this helpful?