v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Portal Teams

List Teams

Lists the developer teams in a portal. Each team can contain any developer and developers can be part of multiple teams.

get/v3/portals/{portalId}/teams

Query parameters

page[size]integer
Example:10

The maximum number of items to include per page. The last page of a collection may include fewer items.

page[number]integer
Example:1

Determines which page of the entities to retrieve.

can_own_applicationsboolean

Filter by a boolean value (true/false).

Filter teams returned in the response.

Response

A paginated list of teams in a portal.

Example response

{
  "meta": {
    "page": {
      "number": 1,
      "size": 10,
      "total": 3
    }
  },
  "data": [
    {
      "id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
      "name": "Partner",
      "description": "Team with access to Partner APIs",
      "created_at": "2022-02-07T17:46:57.52Z",
      "updated_at": "2022-09-25T13:00:00.00Z",
      "can_own_applications": false
    },
    {
      "id": "af9fd312-a987-4628-b4c5-bb4f4fddd5f7",
      "name": "Internal",
      "description": "Team with access to Internal APIs",
      "created_at": "2022-02-07T17:46:57.52Z",
      "updated_at": "2022-09-25T13:00:00.00Z",
      "can_own_applications": true
    },
    {
      "id": "4f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
      "name": "Root",
      "description": "Team with access to Internal Systems",
      "created_at": "2022-02-07T17:46:57.52Z",
      "updated_at": "2022-09-25T13:00:00.00Z",
      "can_own_applications": true
    }
  ]
}