Pipelines API
Endpoints for managing pipeline configuration and signing settings. All endpoints require a valid user session.
List Pipelines
GET /v1/projects/{project_id}/pipelinesAuthentication: User session (Bearer)
Response 200 OK
Returns an array of pipeline objects for the project.
[
{
"id": "pipe_abc123",
"project_id": "proj_def456",
"name": "Android Release",
"config_path": ".oore.yaml",
"config_path_explicit": false,
"execution_config": { ... },
"trigger_config": { "events": ["push"], "branches": ["main"] },
"concurrency": { "max_concurrent": 1, "cancel_in_progress": false },
"enabled": true,
"created_at": 1738800000,
"updated_at": 1738800000
}
]Create Pipeline
POST /v1/projects/{project_id}/pipelinesAuthentication: User session (Bearer)
Request body
{
"name": "Android Release",
"execution_config": {
"platforms": ["android"],
"flutter_version": "3.24.0",
"commands": {
"pre_build": ["flutter pub get"],
"build": ["flutter build apk --release"],
"post_build": []
},
"artifact_patterns": ["**/*.apk"]
},
"trigger_config": {
"events": ["push"],
"branches": ["main"]
}
}Response 200 OK
Returns the created pipeline object.
Get Pipeline
GET /v1/pipelines/{pipeline_id}Authentication: User session (Bearer)
Response 200 OK
Returns the pipeline object with full execution config.
Update Pipeline
PATCH /v1/pipelines/{pipeline_id}Authentication: User session (Bearer)
Request body
Partial update — only include fields to change.
Delete Pipeline
DELETE /v1/pipelines/{pipeline_id}Authentication: User session (Bearer)
Response 200 OK
Returns a confirmation.
Validate Pipeline Config
Validate a pipeline configuration without creating it.
POST /v1/pipelines/validateAuthentication: User session (Bearer)
Request body
{
"config": "version: 1\nplatforms:\n - android\n..."
}Response 200 OK
Returns validation results. Errors are returned inline, not as HTTP errors.
Pipeline Signing
Get Android Signing
GET /v1/pipelines/{pipeline_id}/android-signingReturns the Android signing configuration for a pipeline.
Update Android Signing
PUT /v1/pipelines/{pipeline_id}/android-signingSet or update Android keystore signing configuration.
Get iOS Signing
GET /v1/pipelines/{pipeline_id}/ios-signingReturns the iOS signing configuration for a pipeline.
Update iOS Signing
PUT /v1/pipelines/{pipeline_id}/ios-signingSet or update iOS signing configuration (manual or API mode).
Sync iOS Signing
POST /v1/pipelines/{pipeline_id}/ios-signing/syncSync certificates and profiles from App Store Connect (API mode only).
List iOS Devices
GET /v1/pipelines/{pipeline_id}/ios-signing/devicesList registered iOS test devices for this pipeline.
Register iOS Device
POST /v1/pipelines/{pipeline_id}/ios-signing/devices/registerRegister a new test device for ad hoc distribution.