v29

latestOpenAPI 3.1.0raw.githubusercontent.com2026-01-1415662.1 KB
context

List all ongoing context add jobs for the authenticated user

Returns all jobs (active, waiting, delayed, failed, completed) belonging to the authenticated user.

get/api/v1/context/add-async/status

Query parameters

type'all' | 'active' | 'failed' | 'completed'

Type of jobs to list

limitstring

Maximum number of jobs to return

offsetstring

Number of jobs to skip before starting to collect the result set

Response

List of jobs

successboolean required

Example response

{
  "success": true,
  "jobs": [
    {
      "jobId": "12345",
      "status": "active",
      "attemptsMade": 1,
      "failedReason": "Some error",
      "finishedOn": 1712345678901,
      "processedOn": 1712345678900
    }
  ]
}