Project Sharing
Generate public share links with password protection and expiry.
Get Share Config
const share = await client.getShareConfig('proj_123');
console.log(share.shareUrl, share.viewCount);Enable Sharing
const share = await client.enableSharing('proj_123');
console.log(share.shareUrl);Update Share Settings
await client.updateShareConfig('proj_123', {
allowDownload: true,
passwordProtected: true,
password: 'secret123',
expiresAt: '2026-06-01T00:00:00Z'
});Regenerate Token
const newShare = await client.regenerateShareToken('proj_123');
console.log(newShare.shareUrl);Continue reading
Email LogsList email logs and resend failed notifications.WebhooksRegister webhooks for quote.submitted, form.submitted, option.changed, and configuration.saved events.Augmented RealityEnable and configure surface and wearable AR experiences.TypeScriptBuilt-in TypeScript types and error classes (AuthenticationError, ValidationError, NotFoundError).
