Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 111 additions & 4 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "Langflow",
"version": "1.4.1"
"version": "1.4.2"
},
"paths": {
"/api/v1/build/{flow_id}/vertices": {
Expand Down Expand Up @@ -5464,6 +5464,116 @@
]
}
},
"/api/v2/files/batch/": {
"post": {
"tags": [
"Files"
],
"summary": "Download Files Batch",
"description": "Download multiple files as a zip file by their IDs.",
"operationId": "download_files_batch_api_v2_files_batch__post",
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string",
"format": "uuid"
},
"type": "array",
"title": "File Ids"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
},
"security": [
{
"OAuth2PasswordBearer": []
},
{
"API key query": []
},
{
"API key header": []
}
]
},
"delete": {
"tags": [
"Files"
],
"summary": "Delete Files Batch",
"description": "Delete multiple files by their IDs.",
"operationId": "delete_files_batch_api_v2_files_batch__delete",
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string",
"format": "uuid"
},
"type": "array",
"title": "File Ids"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
},
"security": [
{
"OAuth2PasswordBearer": []
},
{
"API key query": []
},
{
"API key header": []
}
]
}
},
"/api/v2/files/{file_id}": {
"get": {
"tags": [
Expand Down Expand Up @@ -9508,7 +9618,6 @@
"type": "object",
"required": [
"items",
"total",
"page",
"size"
],
Expand Down Expand Up @@ -9575,7 +9684,6 @@
"type": "object",
"required": [
"items",
"total",
"page",
"size"
],
Expand Down Expand Up @@ -9642,7 +9750,6 @@
"type": "object",
"required": [
"items",
"total",
"page",
"size"
],
Expand Down