Skip to Content

Approve Bootstrap

POST/v0/pipelines/{pipeline_name}/approve
Authentication
Parameters

Approves the pipeline to proceed with bootstrapping.

This endpoint is used when a pipeline has been started with bootstrap_policy=await_approval, it is resuming from an existing checkpoint, but the pipeline has been modified since the checkpoint was made and is currently in the AwaitingApproval state awaiting user approval to proceed with bootstrapping.

Authentication

SchemeTypeDetails
JSON web token (JWT) or API keyBearer tokenAuthorization header · Use a JWT token obtained via an OAuth2/OIDC login workflow or an API key obtained via the `/v0/api-keys` endpoint.

Parameters

Path parameters

NameTypeRequiredDescription
pipeline_namestringYesUnique pipeline name

Response

application/json
Pipeline activation initiated
  • object
    Response to a checkpoint request.
    • checkpoint_sequence_numberinteger (int64)required
Request
curl -X POST '/v0/pipelines/{pipeline_name}/approve' \
  -H 'Authorization: Bearer YOUR_TOKEN'
Response
Pipeline with that name does not exist
{ "message": "Unknown pipeline name 'non-existent-pipeline'", "error_code": "UnknownPipelineName", "details": { "pipeline_name": "non-existent-pipeline" } }