JAGGAER Async API

Asynchronous process status operations

Operations 1

GET /asyncStatus/{encoded-async-pid} Async 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/jaggaer-async-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

jaggaer-async-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaggaer Async API
  contact:
    name: JAGGAER Support
    url: https://www.jaggaer.com/support
  x-refined-note:
  - x-api-id differs across the merged source definitions and was not carried
  version: '1.0'
  description: 'Operations tagged Async across 2 of this provider''s published API definitions: jaggaer-aso-ches-openapi.yml, jaggaer-aso-ees-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://ches.aso-api.jaggaer.com
  description: JAGGAER ASO CHES Production Server
- url: https://ees.aso-api.jaggaer.com
  description: JAGGAER ASO EES Production Server
security:
- bearerAuth: []
  apiKeyHeader: []
tags:
- name: Async
  description: Asynchronous process status operations
paths:
  /asyncStatus/{encoded-async-pid}:
    get:
      operationId: getAsyncStatus
      summary: Async Status
      description: 'Returns the status of the asynchronous process associated with the specified process ID. Used to poll for completion of asynchronous operations such as event creation.

        '
      tags:
      - Async
      parameters:
      - name: encoded-async-pid
        in: path
        required: true
        description: Base64-encoded asynchronous process identifier.
        schema:
          type: string
      responses:
        '200':
          description: 'Success; returns the status and status-specific data for the asynchronous file process, including a pre-signed download URL when the process has completed.

            '
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncStatusResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    servers:
    - url: https://ches.aso-api.jaggaer.com
      description: JAGGAER ASO CHES Production Server
components:
  responses:
    NotFound:
      description: The requested resource was not found.
    Unauthorized:
      description: 'Authentication failed. Ensure a valid OAuth 2.0 bearer token and API key are provided.

        '
  schemas:
    AsyncStatusResponse:
      type: object
      description: Status response for an asynchronous process.
      properties:
        status:
          type: string
          description: Current status of the asynchronous process.
          enum:
          - PENDING
          - IN_PROGRESS
          - COMPLETED
          - FAILED
        downloadUrl:
          type: string
          format: uri
          description: 'Pre-signed URL for downloading the result when the process has completed.

            '
        errorMessage:
          type: string
          description: Error message if the process failed.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2.0 bearer token for authentication.
    apiKeyHeader:
      type: apiKey
      in: header
      name: X-Api-Key
      description: API key passed as a request header.
x-refined-from:
- jaggaer-aso-ches-openapi.yml
- jaggaer-aso-ees-openapi.yml