# Search for Team entities Retrieve a paginated list of teams within the Property Management System (PMS) based on optional search criteria. You can filter the results by team name using a query parameter (), which supports partial matches with wildcards. The response includes a paginated list of team records, each containing basic details such as the team's name and key attributes. This endpoint is useful for browsing and managing multiple teams, enabling efficient search and navigation across large datasets. If no search criteria are provided, all teams will be returned in the response. Endpoint: GET /api/v3/teams Version: 3.0.4 Security: OAuth2 ## Query parameters: - `teamName` (string) The name of the team to search for ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) Team ID Example: 1 - `content.teamName` (string) Team Name Example: "Team A" - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)