Events.com JIRA API

The JIRA API from Events.com — 2 operation(s) for jira.

Operations 2

GET /ai/api/v2/jira/schema Get Jira Schema #
POST /ai/api/v2/jira/issues/create Create Jira Issue #

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/eventscom-jira-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

eventscom-jira-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eventscom JIRA API
  version: 1.0.36
  description: 'Operations tagged JIRA across 2 of this provider''s published API definitions: eventscom-datagol-ai-openapi.yml, eventscom-jira-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://datagol-be.events.com/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: JIRA
paths:
  /ai/api/v2/jira/schema:
    get:
      tags:
      - JIRA
      summary: Get Jira Schema
      operationId: get_jira_schema
      parameters:
      - name: connectorId
        in: query
        required: true
        schema:
          type: integer
          description: ID of the jira connector chosen by the user
          title: Connectorid
        description: ID of the jira connector chosen by the user
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JiraProjects'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /ai/api/v2/jira/issues/create:
    post:
      tags:
      - JIRA
      summary: Create Jira Issue
      operationId: create_issue
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateJiraIssueRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JiraProjects:
      properties:
        projects:
          items:
            $ref: '#/components/schemas/JiraProject'
          type: array
          title: Projects
          description: List of Jira projects
      type: object
      title: JiraProjects
    JiraIssueFields:
      properties:
        requiredFields:
          items:
            additionalProperties:
              anyOf:
              - type: string
              - additionalProperties: true
                type: object
              - type: 'null'
            type: object
          type: array
          title: Requiredfields
          description: Required fields for the issue type
        customFields:
          items:
            additionalProperties:
              anyOf:
              - type: string
              - additionalProperties: true
                type: object
              - type: 'null'
            type: object
          type: array
          title: Customfields
          description: Custom fields available
        traditionalFields:
          items:
            additionalProperties:
              anyOf:
              - type: string
              - additionalProperties: true
                type: object
              - type: 'null'
            type: object
          type: array
          title: Traditionalfields
          description: Standard Jira fields
      type: object
      title: JiraIssueFields
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CreateJiraIssueRequest:
      properties:
        connectorId:
          type: integer
          title: Connectorid
          description: User jira connector ID
        workspaceId:
          type: string
          title: Workspaceid
          descriptioin: Workspace ID where the issue is present
        workbookId:
          type: string
          title: Workbookid
          description: Workbook ID where the issue is present
        projectKey:
          type: string
          title: Projectkey
          description: Unique identifier for the Jira project
        issueType:
          type: string
          title: Issuetype
          description: 'Issue type. Example: Bug, Task, Story'
        taskColumnId:
          type: string
          title: Taskcolumnid
          description: Jira column name in the workbook
        mappings:
          additionalProperties: true
          type: object
          title: Mappings
          description: Required, custom and standard fields for the issue
          default: {}
        rowIds:
          anyOf:
          - items:
              type: integer
            type: array
          - type: 'null'
          title: Rowids
          description: List of row IDs of the issue
      type: object
      required:
      - connectorId
      - workspaceId
      - workbookId
      - projectKey
      - issueType
      - taskColumnId
      title: CreateJiraIssueRequest
    JiraProject:
      properties:
        projectKey:
          type: string
          title: Projectkey
          description: Unique identifier for the Jira project
        projectName:
          type: string
          title: Projectname
          description: Name of the project
        projectId:
          type: string
          title: Projectid
          description: ID of the project
        issueTypes:
          items:
            $ref: '#/components/schemas/JiraIssueType'
          type: array
          title: Issuetypes
          description: List of issue types and their fields
      type: object
      required:
      - projectKey
      - projectName
      - projectId
      title: JiraProject
    JiraIssueType:
      properties:
        name:
          type: string
          title: Name
          description: Issue type name
        fields:
          $ref: '#/components/schemas/JiraIssueFields'
          description: Fields associated with this issue type
      type: object
      required:
      - name
      - fields
      title: JiraIssueType
x-refined-from:
- eventscom-datagol-ai-openapi.yml
- eventscom-jira-api-openapi.yml