# Get usernames for users This route gets usernames for users. Endpoint: GET /resources/usernames/v1 Security: bearer ## Query parameters: - `_limit` (number) - `_offset` (number) The page number to retrieve. For example, use 0 for the first page, 1 for the second page. - `_sortBy` (string) Enum: "userId", "username" - `_order` (string) Enum: "ASC", "DESC" - `_usernamePrefix` (string) - `userIds` (array) - `usernames` (array) ## Response 200 fields (application/json): - `username` (string, required) The username value Example: "user.name" - `userId` (string, required) The user id value Example: "user-id"