Skip to content

taipy.rest.api.views.PipelineExecutor

Bases: Resource

Execute a pipeline


post
  • api summary: Execute a pipeline. description: | Execute a pipeline from pipeline_id. If the pipeline does not exist, a 404 error is returned.

!!! Note When the authorization feature is activated (available in the Enterprise edition only), This endpoint requires TAIPY_EXECUTOR role.

Code example:

  curl -X POST http://localhost:5000/api/v1/pipelines/submit/PIPELINE_my_config_75750ed8-4e09-4e00-958d-e352ee426cc9

parameters: - in: path name: pipeline_id schema: type: string responses: 204: content: application/json: schema: type: object properties: message: type: string description: Status message. pipeline: PipelineSchema 404: description: No pipeline has the pipeline_id identifier.