Relativity JobActions API

The JobActions API from Relativity — 2 operation(s) for jobactions.

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/relativity-jobactions-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

relativity-jobactions-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Analytics.Conceptual.Service.Interfaces.Public.V1 AnnotationService JobActions API
  description: Analytics.Conceptual.Service.Interfaces.Public
  version: V1
servers:
- url: /Relativity.REST/api
  description: The URL prefix for all Kepler services
tags:
- name: JobActions
paths:
  /v3/jobs/{jobID}/cancel:
    post:
      tags:
      - JobActions
      summary: Asynchronously cancels a running job.
      parameters:
      - name: jobID
        in: path
        description: Job identifier
        required: true
        schema:
          type: string
      requestBody:
        description: Cancel job request with optional parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CancelJobRequestWrapper'
          text/json:
            schema:
              $ref: '#/components/schemas/CancelJobRequestWrapper'
          application/*+json:
            schema:
              $ref: '#/components/schemas/CancelJobRequestWrapper'
      responses:
        '200':
          description: Job cancellation initiated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CancelJobResponse'
        '404':
          description: Job not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '500':
          description: Internal server error
  /v3/jobs/{jobID}/run:
    post:
      tags:
      - JobActions
      summary: Asynchronously runs a job.
      parameters:
      - name: jobID
        in: path
        description: Job identifier
        required: true
        schema:
          type: string
      requestBody:
        description: Run job request with optional parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunJobRequestWrapper'
          text/json:
            schema:
              $ref: '#/components/schemas/RunJobRequestWrapper'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RunJobRequestWrapper'
      responses:
        '200':
          description: Job execution initiated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunJobResponse'
        '404':
          description: Job not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '500':
          description: Internal server error
components:
  schemas:
    RunJobResponse:
      type: object
      additionalProperties: false
      description: Response for running an ARM Job
    RunJobRequest:
      type: object
      additionalProperties: false
      description: Request for running an ARM Job
    CancelJobResponse:
      type: object
      additionalProperties: false
      description: Response for cancelling an ARM Job
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          format: int32
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
      additionalProperties: {}
    RunJobRequestWrapper:
      type: object
      properties:
        request:
          $ref: '#/components/schemas/RunJobRequest'
      additionalProperties: false
      description: Request for running an ARM Job
    CancelJobRequestWrapper:
      type: object
      properties:
        request:
          $ref: '#/components/schemas/CancelJobRequest'
      additionalProperties: false
      description: Request for cancelling an ARM Job
    CancelJobRequest:
      type: object
      additionalProperties: false
      description: Request for cancelling an ARM Job