Teams

featureOS list all team members API

This endpoint lists all kinds of team members.

GET https://api.featureos.app/api/v3/teams

Headers

Parameter Default Description
API-KEY-Generate from organization settings on the admin dashboard.

Query Parameters

Parameter Format Default Description
roleString-Valid roles (supports 'admin', 'member' and 'csm')
limitInteger30Limits the number of results returned.
pageInteger1Page number of the results to fetch.

Sample Response

[
  {
    "id": 23,
    "user": {
        "name": "Developer",
        "email": "[email protected]"
    },
    "admin": false,
    "role": "admin",
    "created_at": "2022-11-03T04:36:02.000Z",
    "updated_at": "2022-11-03T04:36:02.000Z"
  },
  {
    "id": 24,
    "user": {
        "name": "Designer",
        "email": "[email protected]"
    },
    "admin": false,
    "role": "member",
    "created_at": "2022-11-03T04:36:02.000Z",
    "updated_at": "2022-11-03T04:36:02.000Z"
  }
]
Previous
Understanding Teams API