List team members

GET
/v1/team

Authorization

AuthorizationBearer <token>

The organization API key, sent as Authorization: Bearer <key>.

In: header

Query Parameters

limit?integer

How many items to return. Maximum 100.

Range1 <= value <= 100
Default25
offset?|

How many items to skip from the beginning.

Range0 <= value
Default0

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/team"
{  "data": [    {      "createdAt": "2019-08-24T14:15:22Z",      "email": "string",      "id": "string",      "isAssignable": true,      "name": "string",      "roles": [        "string"      ],      "userId": "string"    }  ],  "pagination": {    "limit": 0,    "offset": 0,    "total": 0  }}