Passport with Delegations
Overview
Create a Passport and set up delegated access for team members.
SDK Example
// Auto-generated from SDK - Coming Soon
const orgPassport = await createPassport({ /* ... */ });
await createDelegation({
from: orgPassport.id,
to: employeePassport.id,
scope: {
systems: ['HumanOS', 'Capability Graph'],
actions: ['read', 'write'],
},
});
Use Cases
- Team access control
- Role-based permissions
- Temporary access grants
- Scoped delegations
See Also
- Revoke Delegation
- Multi-Device Passport Sync
- Delegation Pattern (HumanOS)