Skip to main content
GET
Retrieves the current status, progress, and details of a specific integration.

Path Parameters

string
required
The unique identifier of the integration

Query Parameters

boolean
default:"false"
Whether to include processing logs in the response
boolean
default:"true"
Whether to include error details in the response

Response

string
Unique identifier of the integration
string
Integration type: social, file, chat, api
string
Platform or service name (e.g., linkedin, chatgpt, pdf)
string
Current status: pending, processing, completed, failed, cancelled
object
Progress information for the integration
object
Processing statistics
string
ISO 8601 timestamp of last processing activity
string
ISO 8601 timestamp when integration was created
string
ISO 8601 timestamp when integration completed (if finished)
array
List of errors encountered (if include_errors=true)
array
Processing logs (if include_logs=true)

Status Types

Integration is queued and waiting to start processing.
Integration is currently being processed. Check progress for details.
Integration has finished successfully. All processable items have been handled.
Integration failed due to a critical error. Check errors array for details.
Integration was cancelled by the user or system before completion.

Processing Steps

Different integration types have different processing steps:
  1. authentication - Validating access tokens
  2. discovery - Finding available content
  3. extraction - Downloading content
  4. processing - Creating memories from content
  1. upload - Receiving and storing file
  2. parsing - Extracting text content
  3. chunking - Breaking content into chunks
  4. memory_creation - Creating memories from chunks
  1. validation - Validating chat data format
  2. conversation_detection - Identifying conversations
  3. content_extraction - Extracting meaningful content
  4. memory_creation - Creating memories from conversations

Error Responses

object
Integration not found
object
Unauthorized access

Real-time Updates

For real-time status updates, consider using:
  • Webhooks: Configure webhook endpoints to receive status updates
  • Polling: Poll this endpoint every 10-30 seconds during processing
  • WebSocket: Connect to the WebSocket endpoint for live updates (coming soon)