v2

latestOpenAPI 3.0.3raw.githubusercontent.com2025-01-245593419.2 KB
Teams

List teams in an organization

OAuth scope: team.read


Get a list with all teams within the authenticated organization


A successful response will give a list with the attributes id and name of each team in the organization:

Pagination

  • The default number of items per page is 1, max items per page is 100. Pagination data is returned in the response : See Schema here.
get/v2/teams

Query parameters

pageinteger
Example:1
per_pageinteger
Example:25

Headers

X-Qonto-Staging-Tokenstring

Required only for Sandbox API requests; to get one, please submit the following form: https://getqonto.atlassian.net/servicedesk/customer/portal/5/group/47/create/143.

Response

the response contains a list of all teams in the authenticated organization.

Example response

{
  "teams": [
    {
      "name": "super team"
    }
  ],
  "meta": {
    "current_page": 2,
    "prev_page": 1,
    "total_pages": 2,
    "total_count": 150,
    "per_page": 100
  }
}