# Authenticate Teams user and issue tokens Authenticate Teams user with username and password to obtain access tokens. This endpoint is specifically for Teams authentication and does not support service fallback. Endpoint: POST /teams-auth/login Version: 1.0.0 Security: BearerAuth ## Request fields (application/json): - `username` (string, required) User email address - `password` (string, required) User password ## Response 200 fields (application/json): - `username` (string) Example: "test@email.com" - `accessToken` (string) Example: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." - `refreshToken` (string) Example: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." - `expirationTimeInUTC` (string) Example: "2024-02-29T15:09:14.242875589" - `roles` (array) Example: ["CSP_BUSINESS"] - `tenantId` (string) Example: "Sabrhub" - `services` (array) Example: ["Teams"]