Pipelines
Upsert Pipeline
Upsert a pipeline.
Updates the pipeline if one with the same name and project already exists, otherwise creates a new one.
put/api/v1/pipelines
Query parameters
project_idstring uuid nullable
organization_idstring uuid nullable
Cookies
sessionstring nullable
Request body
Example request
{
"llama_parse_parameters": {
"webhook_configurations": [
{
"webhook_url": "https://example.com/webhooks/llamacloud",
"webhook_headers": {
"Authorization": "Bearer sk-..."
},
"webhook_events": [
"parse.success",
"parse.error"
],
"webhook_output_format": "json"
}
]
}
}Response
Successful Response
Example response
{
"llama_parse_parameters": {
"webhook_configurations": [
{
"webhook_url": "https://example.com/webhooks/llamacloud",
"webhook_headers": {
"Authorization": "Bearer sk-..."
},
"webhook_events": [
"parse.success",
"parse.error"
],
"webhook_output_format": "json"
}
]
}
}