API Authentication
PeopleOS APIs use JWT (JSON Web Token) authentication:
- Call
POST /api/v1/auth/loginwith your email and password - Receive a JWT token valid for 24 hours
- Include the token in all subsequent requests:
Authorization: Bearer <token>
For 2FA-enabled accounts, the login flow includes an additional TOTP verification step. See the API documentation for full endpoint reference.