Projects
Create Project
Get Started
Endpoints
- Projects
- Project Members
- Connections
- Flows
- Pieces
- Git Sync
Projects
Create Project
POST
/
v1
/
projects
curl --request POST \
--url https://cloud.activepieces.com/api/v1/projects/ \
--header 'Content-Type: application/json' \
--data '{
"displayName": "<string>",
"externalId": "<string>"
}'
{
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"ownerId": "<string>",
"displayName": "<string>",
"notifyStatus": "NEVER",
"type": "PLATFORM_MANAGED",
"platformId": "<string>",
"externalId": "<string>",
"plan": {
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"projectId": "<string>",
"stripeSubscriptionId": "<string>",
"subscriptionStartDatetime": "<string>",
"flowPlanName": "<string>",
"minimumPollingInterval": 123,
"connections": 123,
"teamMembers": 123,
"tasks": 123,
"tasksPerDay": 123
},
"usage": {
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"projectId": "<string>",
"consumedTasks": 123,
"connections": 123,
"teamMembers": 123,
"consumedTasksToday": 123,
"nextResetDatetime": "<string>"
}
}
Response
201 - application/json
Default Response
Available options:
NEVER
Available options:
PLATFORM_MANAGED
curl --request POST \
--url https://cloud.activepieces.com/api/v1/projects/ \
--header 'Content-Type: application/json' \
--data '{
"displayName": "<string>",
"externalId": "<string>"
}'
{
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"ownerId": "<string>",
"displayName": "<string>",
"notifyStatus": "NEVER",
"type": "PLATFORM_MANAGED",
"platformId": "<string>",
"externalId": "<string>",
"plan": {
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"projectId": "<string>",
"stripeSubscriptionId": "<string>",
"subscriptionStartDatetime": "<string>",
"flowPlanName": "<string>",
"minimumPollingInterval": 123,
"connections": 123,
"teamMembers": 123,
"tasks": 123,
"tasksPerDay": 123
},
"usage": {
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"projectId": "<string>",
"consumedTasks": 123,
"connections": 123,
"teamMembers": 123,
"consumedTasksToday": 123,
"nextResetDatetime": "<string>"
}
}