1. Project Access
Apidog API
  • Introduction
  • API Versions
  • Authentication
  • Import & Export
    • Import OpenAPI/Swagger Data
      POST
    • Import Postman Collection Data
      POST
    • Export Data in OpenAPI/Swagger Format
      POST
  • Team Access Grants
    • Assign a team role via the external API
      POST
  • Project Access
    • Find Team Projects by Exact Match
      GET
    • Find Accessible Teams by Exact Match
      GET
    • Grant or Invite Project Access
      POST
    • List Available Project Roles for a Team
      GET
  • Organization Teams
    • Create organization team
      POST
  • Schemas
    • TeamRole
    • ErrorResponse
    • ProjectAccessMode
    • CreateTeamAccessGrantRequest
    • TeamAccessGrant
    • CreateTeamAccessGrantResponse
  1. Project Access

Find Accessible Teams by Exact Match

GET
/v1/teams
Returns teams accessible to the authenticated caller. name is optional: omit it to return all accessible teams, or provide it for a trimmed, case-insensitive exact-name match. This is not a fuzzy or substring search. Only id and name are returned.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params

Header Params

Responses

🟢200
application/json
Returns all accessible teams when name is omitted, or accessible teams whose full name matches when name is provided.
Bodyapplication/json

🟠401
🟠422
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.apidog.com/v1/teams?name=Alpha&locale=en-US' \
--header 'X-Apidog-Api-Version: 2026-05-28' \
--header 'X-Apidog-Api-Version: 2024-03-28' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "success": true,
    "data": [
        {
            "id": 41,
            "name": "Alpha"
        },
        {
            "id": 42,
            "name": "ALPHA"
        }
    ]
}
Modified at 2026-09-01 06:21:01
Previous
Find Team Projects by Exact Match
Next
Grant or Invite Project Access
Built with