> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Vector Store File Batch

Retrieve the status of a vector store file batch.

Poll this action until the `status` field is `completed` before continuing your workflow.

<Note>
  External Documentation

  To learn more, visit the [OpenAI documentation](https://developers.openai.com/api/reference/resources/vector_stores/subresources/file_batches/methods/retrieve).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                  |
  | --------------- | -------------------------------------------------------------------------------------------- |
  | Batch ID        | The ID of the file batch. Can be obtained using the `Create Vector Store File Batch` action. |
  | Vector Store ID | The ID of the vector store. Can be obtained using the `Create Vector Store` action.          |
</div>

## Example Output

```json theme={"dark"}
{
	"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](https://library.blinkops.com/workflows/get-vector-store-file-batch-with-openai-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-vector-store-file-batch-with-openai-and-send-results-via-email/canvas" />
</div>
