Projects
List Projects
Get Started
Endpoints
- Projects
- User Invitations
- Project Members
- Connections
- Flows
- Flow Runs
- Sample Data
- Pieces
- Project Releases
- Git Sync
- Folders
- Flow Templates
Projects
List Projects
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>",
"releasesEnabled": true,
"usage": {
"tasks": 123,
"teamMembers": 123,
"aiTokens": 123,
"nextLimitResetDate": "<string>"
},
"plan": {
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"projectId": "<string>",
"name": "<string>",
"piecesFilterType": "NONE",
"pieces": [
"<string>"
],
"tasks": 123,
"aiTokens": 123
},
"analytics": {
"totalUsers": 123,
"activeUsers": 123,
"totalFlows": 123,
"activeFlows": 123
}
}
],
"next": "<string>",
"previous": "<string>"
}
Authorizations
Use your api key generated from the admin console
Response
200 - application/json
Default Response
Available options:
NEVER
Available options:
NONE
Cursor to the next page
Cursor to the previous page
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>",
"releasesEnabled": true,
"usage": {
"tasks": 123,
"teamMembers": 123,
"aiTokens": 123,
"nextLimitResetDate": "<string>"
},
"plan": {
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"projectId": "<string>",
"name": "<string>",
"piecesFilterType": "NONE",
"pieces": [
"<string>"
],
"tasks": 123,
"aiTokens": 123
},
"analytics": {
"totalUsers": 123,
"activeUsers": 123,
"totalFlows": 123,
"activeFlows": 123
}
}
],
"next": "<string>",
"previous": "<string>"
}