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
    }
  ]
}

Changes

Changed in 3 of the 29 revisions of this API.214

  • 510cbb709bed212See the full diff
    • removed the optional property from the response with the status

      response-optional-property-removed

    • removed the optional property from the response with the status

      response-optional-property-removed

    • added the non-success response with the status

      response-non-success-status-added

    • added the non-success response with the status

      response-non-success-status-added

    • the response property became required for the status

      response-property-became-required

    • the response property became required for the status

      response-property-became-required

    • the response property // became required for the status

      response-property-became-required

    • the response property // became required for the status

      response-property-became-required

    • the response property // became required for the status

      response-property-became-required

    • the response property // became required for the status

      response-property-became-required

    • the response property became required for the status

      response-property-became-required

    • the response property became required for the status

      response-property-became-required

    • the response property became required for the status

      response-property-became-required

    • the response property became required for the status

      response-property-became-required

    • api operation id checkStatusForAllAddAsyncJobs was added

      api-operation-id-added

    • endpoint added

      endpoint-added