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.
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
}
]
}