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

Authorizations

Authorization
string
header
required

Use your api key generated from the admin console

Query Parameters

limit
number
cursor
string
type
required
Available options:
PLATFORM
projectId
string | null
status
Available options:
PENDING

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