Simplio3D

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