Skip to main content
GET
/
api
/
projects
/
{projectId}
/
members
/
users
List member users
curl --request GET \
  --url https://api.example.com/api/projects/{projectId}/members/users \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "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
    }
  ],
  "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 users by email, first name, or last name

page
number
default:1

Current page

perPage
number
default:10

Number of items per page

Response

200 - application/json

Paginated list of users available for invitation

Paginated list of users available for invitation

results
object[]
required

List of users available to invite

paginate
object
required

Pagination metadata