Get Started
Endpoints
- Projects
- Project Members
- Connections
- Flows
- Flow Runs
- Pieces
- Git Sync
Projects
Create Project
POST
/
v1
/
projects
/
Copy
Ask AI
curl --request POST \
--url https://cloud.activepieces.com/api/v1/projects/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"displayName": "<string>",
"externalId": "<string>"
}'
Copy
Ask AI
{
"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
}
}
Authorizations
Use your api key generated from the admin console
Body
application/json
Response
201 - application/json
Default Response
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://cloud.activepieces.com/api/v1/projects/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"displayName": "<string>",
"externalId": "<string>"
}'
Copy
Ask AI
{
"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
}
}
Assistant
Responses are generated using AI and may contain mistakes.