Get Started
Endpoints
- Projects
- Users
- User Invitations
- Project Members
- Connections
- Flows
- Flow Runs
- Sample Data
- Pieces
- Project Releases
- Global Connections
- Git Sync
- Folders
- Flow Templates
- MCP Servers
Project Releases
Create Project Release
POST
/
v1
/
project-releases
cURL
Copy
Ask AI
curl --request POST \
--url https://cloud.activepieces.com/api/v1/project-releases \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"type": "ROLLBACK",
"name": "<string>",
"description": "<string>",
"selectedFlowsIds": [
"<string>"
],
"projectId": "<string>",
"projectReleaseId": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"projectId": "<string>",
"name": "<string>",
"description": "<string>",
"importedBy": "<string>",
"fileId": "<string>",
"type": "GIT",
"importedByUser": {
"id": "<string>",
"email": "<string>",
"firstName": "<string>",
"status": "ACTIVE",
"externalId": "<string>",
"lastChangelogDismissed": "<string>",
"platformId": "<string>",
"platformRole": "ADMIN",
"lastName": "<string>",
"created": "<string>",
"updated": "<string>"
}
}
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
.
cURL
Copy
Ask AI
curl --request POST \
--url https://cloud.activepieces.com/api/v1/project-releases \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"type": "ROLLBACK",
"name": "<string>",
"description": "<string>",
"selectedFlowsIds": [
"<string>"
],
"projectId": "<string>",
"projectReleaseId": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"created": "<string>",
"updated": "<string>",
"projectId": "<string>",
"name": "<string>",
"description": "<string>",
"importedBy": "<string>",
"fileId": "<string>",
"type": "GIT",
"importedByUser": {
"id": "<string>",
"email": "<string>",
"firstName": "<string>",
"status": "ACTIVE",
"externalId": "<string>",
"lastChangelogDismissed": "<string>",
"platformId": "<string>",
"platformRole": "ADMIN",
"lastName": "<string>",
"created": "<string>",
"updated": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.