GET
/
v1
/
project-members
curl --request GET \
  --url https://cloud.activepieces.com/api/v1/project-members \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "created": "<string>",
      "updated": "<string>",
      "platformId": "<string>",
      "userId": "<string>",
      "projectId": "<string>",
      "projectRoleId": "<string>",
      "user": {
        "id": "<string>",
        "email": "<string>",
        "firstName": "<string>",
        "status": "ACTIVE",
        "externalId": "<string>",
        "platformId": "<string>",
        "platformRole": "ADMIN",
        "lastName": "<string>",
        "created": "<string>",
        "updated": "<string>"
      },
      "projectRole": {
        "id": "<string>",
        "created": "<string>",
        "updated": "<string>",
        "name": "<string>",
        "permissions": [
          "<string>"
        ],
        "platformId": "<string>",
        "type": "<string>",
        "userCount": 123
      },
      "project": {
        "id": "<string>",
        "displayName": "<string>"
      }
    }
  ],
  "next": "<string>",
  "previous": "<string>"
}

Authorizations

Authorization
string
header
required

Use your api key generated from the admin console

Query Parameters

projectId
string
required
projectRoleId
string
cursor
string
limit
number

Response

200 - application/json
Default Response
data
object[]
required
next
string | null

Cursor to the next page

previous
string | null

Cursor to the previous page