Manage Assistants
Describe an operation
Get the status of an operation.
get/operations/{assistant_name}/{operation_id}
Path parameters
assistant_namestring required
The name of the assistant.
operation_idstring required
The identifier of the operation to be described.
Headers
X-Pinecone-Api-Versionstring required
Required date-based version header
Response
Current information and status of the operation.
Example response
{
"id": "op-1234-abcd-5678",
"operation_type": "upload_file",
"file_id": "my-file-id-123",
"status": "Processing",
"created_on": "2025-10-01T12:30:00Z",
"completed_on": "2025-10-01T12:35:00Z",
"percent_complete": 42,
"error_message": "File processing failed: unsupported file format.",
"ingestion_units": 50
}