Search teams

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, and handles (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., ids AND names = 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 pageCursor query parameter
Language
Credentials
Bearer
JWT
Response
Click Try It! to start a request and see the response here!