v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
System Accounts - Team Membership

List System Accounts on a Team

Returns a paginated list of system accounts that belong to the team specified in the path parameter.

get/v3/teams/{teamId}/system-accounts

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 system accounts returned in the response.

Response

A paginated list response for a collection of system accounts.

Example response

{
  "meta": {
    "page": {
      "number": 1,
      "size": 10,
      "total": 100
    }
  },
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "name": "Example System Account",
      "description": "This is a sample system account description.",
      "created_at": "2022-08-24T14:15:22Z",
      "updated_at": "2022-10-05T10:33:49Z",
      "konnect_managed": false
    }
  ]
}