post
https://api.productboard.com/v2/teams/search
Purpose
Performs a filtered search over teams using a POST request. Use this endpoint for batch lookups by IDs, names, or handles when query string filters are insufficient.
Key Features
- Supports filtering by
ids,names, andhandles(all optional, max 100 items each) - All string matching for names and handles is case-insensitive
- Returns the same response format as
GET /v2/teams
Filter Logic
- Multiple values within a single filter use OR logic (e.g.,
names: ["A", "B"]returns teams named A or B) - Different filter types use AND logic (e.g.,
idsANDnames= intersection) - Empty filters object returns all teams (same as
GET /v2/teams)
Important Notes
- Each filter array accepts at most 100 items; exceeding this returns a 400 error
- Pagination uses cursor-based navigation via
pageCursorquery parameter