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 Team Projects by Exact Match

GET
/v1/teams/{teamId}/projects
Returns projects in a team that the authenticated caller can access. teamId is required and the caller must have at least Guest access to the team. name is optional: omit it to return all accessible projects in the team, or provide it for a trimmed, case-insensitive exact-name match. Only id, teamId, and name are returned.

Request

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

Query Params

Header Params

Responses

🟢200
application/json
Returns all projects in the authorized team when name is omitted, or projects whose full name matches when name is provided.
Bodyapplication/json

🟠401
🟠403
🟠422
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.apidog.com/v1/teams/41/projects?name=Gateway&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": 73,
            "teamId": 41,
            "name": "Gateway"
        }
    ]
}
Modified at 2026-09-01 06:21:01
Previous
Assign a team role via the external API
Next
Find Accessible Teams by Exact Match
Built with