Skip to main content

List organization teams

GET 

/orgs/:orgId/teams

Lists all teams in the organization identified by the given orgId.

Request

Path Parameters

    orgId int64required

    Organization numeric identifier

Query Parameters

    max int32

    Pagination max results

    offset int32

    Pagination offset

    search string

    Filter search parameter

Responses

OK

Schema
    teams object[]
  • Array [
  • teamIdint64
    namestring
    descriptionstring
    avatarUrlstring
    membersCountint64
  • ]
  • totalSizeint64

Authorization: http

name: BearerAuthtype: httpscheme: bearerbearerFormat: jwt
import http.client

conn = http.client.HTTPSConnection("docs.seqera.io")
payload = ''
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer <token>'
}
conn.request("GET", "/orgs/:orgId/teams", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Auth
Parameters
— pathrequired
— query
— query
— query