Conga Jobs API

Handles actions related to workflow jobs

Operations 1

GET /v2/jobs/{id} Get job information #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/conga-jobs-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

conga-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ingress Jobs API
  version: 1.0.0
  description: Handles actions related to workflow jobs
servers:
- url: https://rls.congacloud.com/api/ingress
security:
- JWT: []
tags:
- name: Jobs
  description: Handles actions related to workflow jobs
paths:
  /v2/jobs/{id}:
    get:
      tags:
      - Jobs
      summary: Get job information
      description: 'Returns information for a given job.


        EXAMPLE I: Getting the response information of a completed job.


        Request:


        GET /jobs/64d30d4a-5c89-4d9f-a5c8-b8453af5c280


        Response:


        {

        "id": "64d30d4a-5c89-4d9f-a5c8-b8453af5c280",

        "status": 3,

        "result": {

        "Documents": [

        "id": "5042d67f-21e6-4691-8f79-02446d3cd11c",

        "name": "oupput-filename.pdf",

        "entityId": "3ff0e051-d655-451d-abb5-a71b202cb935",

        "entityName": "Agreement",

        "parentDocumentId": "bfc3a050-895e-4d0e-a1a1-777d094082fa",

        "fileType": "application/pdf",

        "fileSize": 181239,

        "extension": ".pdf",

        "createdDate": "2023-07-15T12:42:18.147",

        "modifiedDate": "2023-07-15T12:42:18.147"

        ]

        }

        }'
      operationId: Jobs_Get
      parameters:
      - name: id
        in: path
        required: true
        description: The job ID
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: Returns the job information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobEntity'
      security:
      - JWT: []
components:
  schemas:
    JobEntity:
      allOf:
      - $ref: '#/components/schemas/BaseEntity'
      - type: object
        additionalProperties: false
        properties:
          status:
            oneOf:
            - $ref: '#/components/schemas/JobStatus'
          startTime:
            type:
            - string
            - 'null'
            format: date-time
          endTime:
            type:
            - string
            - 'null'
            format: date-time
          duration:
            type:
            - number
            - 'null'
            format: double
          progress:
            type: number
            format: double
          errorReason:
            type:
            - string
            - 'null'
          result:
            type:
            - object
            - 'null'
            additionalProperties: {}
    JobStatus:
      type: string
      description: ''
      x-enumNames:
      - Created
      - Queued
      - Started
      - Stopped
      - Hibernating
      - Failed
      - Completed
      - Processing
      enum:
      - Created
      - Queued
      - Started
      - Stopped
      - Hibernating
      - Failed
      - Completed
      - Processing
    BaseEntity:
      type: object
      x-abstract: true
      additionalProperties: false
      properties:
        id:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        createdDate:
          type:
          - string
          - 'null'
          format: date-time
        modifiedDate:
          type:
          - string
          - 'null'
          format: date-time
  securitySchemes:
    JWT:
      type: apiKey
      description: Provide oauth authentication
      name: Authorization
      in: header