Conga Job Status API

API to return job status details

Operations 4

DELETE /job-status Delete job by JobId and also its associated child jobs #
POST /job-status Get multiple job status #
GET /job-status/{jobId} Get job status #
GET /job-status/{id} Get job status #

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-job-status-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-job-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Conga Job Status API
  version: 1.0.0
  description: 'Operations tagged JobStatus across 4 of this provider''s published API definitions: conga-administration.json, conga-billing-management.json, conga-catalog.json, conga-quote.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://rls.congacloud.com/api/revenue-admin/v1
- url: https://rls.congacloud.com/api/billing/v1
- url: https://rls.congacloud.com/api/catalog/v1
- url: https://rls.congacloud.com/api/quote/v1
security:
- Bearer: []
tags:
- name: Job Status
  description: API to return job status details
paths:
  /job-status:
    delete:
      tags:
      - Job Status
      summary: Delete job by JobId and also its associated child jobs
      description: Delete job by JobId and also delete its child jobs
      requestBody:
        description: Pass JobIds which you want to delete
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
          text/json:
            schema:
              type: array
              items:
                type: string
          application/*+json:
            schema:
              type: array
              items:
                type: string
      responses:
        '200':
          description: OK
      operationId: deleteJobStatus
      x-operation-id-source: derived
    post:
      tags:
      - Job Status
      summary: Get multiple job status
      description: 'Retrieves all job status details for the given jobIds.

        If includeChildJobs is true then it will return all the child jobs for the given jobId.


        OperationType


        ValidateBatchData -> Detailed validation error messages


        GenerateBatchReport -> Report link'
      requestBody:
        description: jobStatusRequestList
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/JobStatusRequest'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/JobStatusRequest'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/JobStatusRequest'
      responses:
        '200':
          description: OK
      operationId: postJobStatus
      x-operation-id-source: derived
    servers:
    - url: https://rls.congacloud.com/api/revenue-admin/v1
  /job-status/{jobId}:
    get:
      tags:
      - Job Status
      summary: Get job status
      description: 'Retrieves job status details for the given job.

        If includeChildJobs is true then it will return all the child jobs for the given jobId.


        OperationType


        ValidateBatchData -> Detailed validation error messages


        GenerateBatchReport -> Report link'
      parameters:
      - name: jobId
        in: path
        description: A unique identifier of the job
        required: true
        schema:
          type: string
      - name: includeChildJobs
        in: query
        description: includeChildJobs
        schema:
          type: boolean
          default: false
      - name: operationType
        in: query
        description: operationType
        schema:
          type: string
      responses:
        '200':
          description: OK
      operationId: getJobStatusByJobId
      x-operation-id-source: derived
    servers:
    - url: https://rls.congacloud.com/api/revenue-admin/v1
  /job-status/{id}:
    get:
      tags:
      - Job Status
      summary: Get job status
      description: Retrieves job status details for the given job or record.
      parameters:
      - name: id
        in: path
        description: A unique identifier of the job or Record Id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      operationId: getJobStatusById
      x-operation-id-source: derived
    servers:
    - url: https://rls.congacloud.com/api/billing/v1
components:
  schemas:
    JobStatusRequest:
      type: object
      properties:
        JobId:
          type:
          - string
          - 'null'
        IncludeChildJobs:
          type: boolean
          default: false
      additionalProperties: false
    ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert JWT with Bearer into field
      name: Authorization
      in: header
x-refined-from:
- conga-administration.json
- conga-billing-management.json
- conga-catalog.json
- conga-quote.json