Skip to main content
GET
/
api
/
projects
/
{projectId}
/
members
List members
curl --request GET \
  --url https://api.example.com/api/projects/{projectId}/members \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "owner": true,
      "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "email": "[email protected]",
        "firstName": "<string>",
        "lastName": "<string>",
        "type": "<string>",
        "status": "<string>",
        "organisationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "createdAt": "<string>",
        "updatedAt": "<string>",
        "isService": true
      },
      "groups": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "name": "<string>",
          "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "permissions": [
            "<string>"
          ],
          "description": "<string>",
          "roleId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        }
      ]
    }
  ],
  "paginate": {
    "current": 123,
    "from": 123,
    "to": 123,
    "total": 123,
    "pageSize": 123
  }
}

Authorizations

Authorization
string
header
required

Personal access token is obtained through your profile

Path Parameters

projectId
string<uuid>
required

Unique identifier of the project

Query Parameters

Search term to filter members by email or name

page
number
default:1

Current page

perPage
number
default:10

Number of items per page

Response

200 - application/json

Paginated list of project members

Paginated list of project members

results
object[]
required

List of project members

paginate
object
required

Pagination metadata