For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • SDK Reference
      • POSTCreate Batch
      • POSTAdd Batch Items
      • POSTProcess Batch
      • GETList Batches
      • GETGet Batch
      • DELDelete Batch
      • GETList Batch Items
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceBatch

Process Batch

POST
https://api.getzep.com/api/v2/batches/:batchId/process
POST
/api/v2/batches/:batchId/process
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.batch.process(
7 batch_id="batchId",
8)
1{
2 "batch_id": "string",
3 "completed_at": "string",
4 "created_at": "string",
5 "item_count": 1,
6 "metadata": {},
7 "processed_at": "string",
8 "progress": {
9 "failed_items": 1,
10 "percent_complete": 1.1,
11 "processing_items": 1,
12 "queued_items": 1,
13 "skipped_items": 1,
14 "succeeded_items": 1,
15 "total_items": 1
16 },
17 "status": "draft",
18 "updated_at": "string"
19}
Start processing a filled batch. Repeated calls return the existing batch run.
Was this page helpful?
Previous

List Batches

Next
Built with

Path parameters

batchIdstringRequired
The batch ID.

Response

Batch processing state
batch_idstring
completed_atstring
created_atstring
item_countinteger
metadatamap from strings to any
processed_atstring
progressobject
statusenum
updated_atstring

Errors

400
Bad Request Error
403
Forbidden Error
404
Not Found Error
409
Conflict Error
500
Internal Server Error