Team management
logi's OAuth apps are owned at the organization level. When you sign up, a single-member organization is created automatically, and once you form a team you can invite members.
CLI commands are coming soon
The logi team * command group is not yet implemented in the CLI. For now, handle member invitations, role changes, and removals in the Developer Console (web). CLI support is on the roadmap.
What's available today
Developer Console (web)
At https://start.1pass.dev/developer/memberships you can:
- View the organization's member list
- Invite a new member (by email)
- Change a role (
owner/admin/developer) - Remove a member
- Resend or cancel a pending invitation
REST API
If you need to script this, call the API directly:
GET /api/v1/developer/memberships— list membersPOST /api/v1/developer/invitations— create an invitationPATCH /api/v1/developer/memberships/:id— change a roleDELETE /api/v1/developer/memberships/:id— remove a member
For the full specification, see the API reference.
Roles (for reference)
| Role | Create apps | Rotate secret | Invite members | Edit org info |
|---|---|---|---|---|
| owner | ✅ | ✅ | ✅ | ✅ |
| admin | ✅ | ✅ | ✅ | ✅ |
| developer | ✅ | ❌ | ❌ | ❌ |
There must always be at least one owner.
Next
- Developer Console
- Audit log — track who did what, and when