patch
https://maestro.dadosfera.ai/pipelinesV2/
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Update Pipeline
Use this route to update an existing pipeline's configuration.
How to use
Provide the pipeline id as a path parameter and send the fields to update in the request body.
Payload example
{
"name": "Updated Pipeline Name",
"description": "Updated pipeline description",
"tags": ["production", "updated"],
"cron": "0 6 * * *"
}Body fields
name(optional): updated display name;description(optional): updated description;tags(optional): updated array of tags;cron(optional): updated cron schedule expression;- Any other pipeline configuration fields that need updating.
Error scenarios
| Code | Error | Description |
|---|---|---|
| 401 | Unauthenticated | Invalid or missing access-token header |
| 403 | Forbidden | User does not have the required permissions |
| 404 | Not Found | The requested pipeline does not exist |
| 500 | Internal Server Error | Unknown server error |
