Skip to main content
Retrieve the status of a vector store file batch. Poll this action until the status field is completed before continuing your workflow.
External DocumentationTo learn more, visit the OpenAI documentation.

Parameters

ParameterDescription
Batch IDThe ID of the file batch. Can be obtained using the Create Vector Store File Batch action.
Vector Store IDThe ID of the vector store. Can be obtained using the Create Vector Store action.

Example Output

{
	"id": "vsfb_abc123",
	"object": "vector_store.files_batch",
	"created_at": 1699061776,
	"vector_store_id": "vs_abc123",
	"status": "completed",
	"file_counts": {
		"in_progress": 0,
		"completed": 1,
		"failed": 0,
		"cancelled": 0,
		"total": 1
	}
}

Workflow Library Example

Get Vector Store File Batch with Openai and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop