Documentation Index
Fetch the complete documentation index at: https://docs.maximem.ai/llms.txt
Use this file to discover all available pages before exploring further.
ingestion_id returned by memories.create, memories.batch_create, or memories.create_from_file.
Parameters
The ingestion job ID returned from a create call.
Returns
MemoryStatusResponse with the job’s current state and the IDs of any memories it has produced so far.
The ingestion job identifier.
The document identifier associated with this ingestion.
Current status of the ingestion job.
| Value | Description |
|---|---|
queued | Document is waiting to be processed |
processing | Document is currently being processed through the pipeline |
completed | All extraction and storage stages completed successfully |
failed | Processing failed. Check error_message for details. |
partial_success | Some extractions succeeded but others failed. Check error_message for details. |
Timestamp when the job was queued.
Timestamp when processing started, or
None if still queued.Timestamp when processing finished, or
None if still in progress.Number of memories produced from this ingestion so far.
IDs of memories produced from this ingestion. You can pass these to
memories.get.Error description if
status is failed or partial_success; otherwise None.Example
Raises
SynapAuthError— when the API key is missing or invalid.SynapNotFoundError— when theingestion_idis unknown.