Skip to main content

List organization collaborators

GET 

/orgs/:orgId/collaborators

Lists the collaborators of the organization identified by the given orgId.

Request

Path Parameters

    orgId int64required

    Organization numeric identifier

Query Parameters

    max int32

    Pagination result max result

    offset int32

    Pagination offset

    search string

    Filter search parameter

Responses

OK

Schema
    members object[]
  • Array [
  • memberIdint64
    userIdint64
    userNamestring
    emailstring
    firstNamestring
    lastNamestring
    avatarstring
    roleOrgRole (string)

    Possible values: [owner, member, collaborator]

  • ]
  • 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/collaborators", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Auth
Parameters
— pathrequired
— query
— query
— query