GET
/
v1
/
projects
/
curl --request GET \
  --url https://cloud.activepieces.com/api/v1/projects/ \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "created": "<string>",
      "updated": "<string>",
      "ownerId": "<string>",
      "displayName": "<string>",
      "notifyStatus": "NEVER",
      "platformId": "<string>",
      "externalId": "<string>",
      "usage": {
        "tasks": 123,
        "teamMembers": 123
      },
      "plan": {
        "id": "<string>",
        "created": "<string>",
        "updated": "<string>",
        "projectId": "<string>",
        "name": "<string>",
        "minimumPollingInterval": 123,
        "piecesFilterType": "NONE",
        "pieces": [
          "<string>"
        ],
        "connections": 123,
        "teamMembers": 123,
        "tasks": 123
      }
    }
  ],
  "next": "<string>",
  "previous": "<string>"
}

Authorizations

Authorization
string
headerrequired

Use your api key generated from the admin console

Query Parameters

externalId
string
limit
number
cursor
string

Response

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

Cursor to the next page

previous
string | null

Cursor to the previous page