Conga Status API

Get merge process status

Operations 1

GET /v1/Status/{id} Get merge process 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-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 email required.

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

OpenAPI Specification

conga-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ingress Status API
  version: 1.0.0
  description: Get merge process status
servers:
- url: https://rls.congacloud.com/api/ingress
security:
- JWT: []
tags:
- name: Status
  description: Get merge process status
paths:
  /v1/Status/{id}:
    get:
      tags:
      - Status
      summary: Get merge process status
      description: Gets the status of all completed and ongoing merge steps. For more information, see [Conga Composer API Use Cases](https://documentation.conga.com/composer/latest/conga-composer-api-use-cases-203496246.html).
      operationId: Status_Get
      parameters:
      - name: id
        in: path
        required: true
        description: Correlation ID
        schema:
          type: string
        x-position: 1
      - name: showDetails
        in: query
        schema:
          type: boolean
          default: false
        x-position: 2
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MergeStatusResponse'
        '204':
          description: No Content
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '500':
          description: Internal Server Error
      security:
      - JWT: []
components:
  schemas:
    ProblemDetails:
      type: object
      additionalProperties: {}
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
        extensions:
          type: object
          additionalProperties: {}
    StatusJsonResponse:
      type: object
      description: 'Status Json : A model to hold information pertaining to Statuses'
      additionalProperties: false
      properties:
        id:
          type: string
          description: Id
        correlationId:
          type: string
          description: Correlation id
        transactionId:
          type: string
          description: Transaction id
          format: guid
        operation:
          type: string
          description: Operation
        message:
          type: string
          description: Message
        errors:
          type: array
          description: List of errors details
          items:
            $ref: '#/components/schemas/ErrorDetailResponse'
        statusCode:
          type: integer
          description: Status Code
          format: int32
        detail:
          type: string
          description: Detail
        eventDate:
          type: string
          description: Event Date
          format: date-time
    MergeStatusResponse:
      type: object
      description: MergeStatusResponse
      additionalProperties: false
      properties:
        correlationId:
          type: string
          description: Correlation Id
        message:
          type: string
          description: Message
        messageId:
          type: string
          description: MessageId
        lastUpdateTimeStamp:
          type: integer
          description: LastUpdateTimeStamp
          format: int64
        expirationTime:
          type: integer
          description: ExpirationTime
          format: int64
        createdDate:
          type: string
          description: Created Date
          format: date-time
        detail:
          type:
          - array
          - 'null'
          description: Detail
          items:
            $ref: '#/components/schemas/StatusJsonResponse'
        errors:
          type: array
          description: List of errors details
          items:
            $ref: '#/components/schemas/ErrorDetailResponse'
        eventDate:
          type: string
          description: EventDate UTC date time
          format: date-time
        expirationTimeDateTime:
          type: string
          description: ExpirationTime UTC date time
          format: date-time
    ErrorDetailResponse:
      type: object
      additionalProperties: false
      properties:
        category:
          type: string
          description: ErrorCategory
        message:
          type: string
          description: Message
        code:
          type: string
          description: Code
  securitySchemes:
    JWT:
      type: apiKey
      description: Provide oauth authentication
      name: Authorization
      in: header