Aha.io Integrations API

The Integrations API from Aha.io — 4 operation(s) for integrations.

Operations 7

POST /api/v1/integrations Create an integration for an account
GET /api/v1/integrations List integrations for an account
POST /api/v1/products/{product_id}/integrations Create an integration for a product
GET /api/v1/products/{product_id}/integrations List integrations for a product
GET /api/v1/products/{product_id}/integrations/{integration_id} Get a specific integration
PUT /api/v1/products/{product_id}/integrations/{integration_id} Enable integration
GET /api/v1/products/{product_id}/integrations/{service_name} Get a specific integration by service name

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/aha-integrations-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

aha-integrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aha! Account backups Integrations API
  version: 1.0.0
  description: Complete API documentation for Aha! generated from actual test responses
  contact:
    name: Aha! Support
    url: https://www.aha.io/support
servers:
- url: https://{account-domain}.aha.io/api/v1
  description: Aha! API Server
  variables:
    account-domain:
      description: Your Aha! account domain
      default: company
security:
- OAuth2: []
- ApiKeyAuth: []
- CookieAuth: []
tags:
- name: Integrations
paths:
  /api/v1/integrations:
    post:
      summary: Create an integration for an account
      description: null
      tags:
      - Integrations
      parameters: []
      responses:
        '200':
          description: Successful operation
          headers:
            Content-Type:
              description: application/json; charset=utf-8
              schema:
                type: string
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/IntegrationsPostResponse'
              example:
                integration:
                  id: '6776881149498164474'
                  service_name: zendesk
                  template_id: null
                  name: Zendesk
                  enabled: true
                  callback_token: 5e0c51800087c7f9
                  created_at: '2019-01-01T00:00:00.000Z'
                  updated_at: '2019-01-01T00:00:00.000Z'
                  last_error_at: null
                  last_webhook_request_at: null
                  url: http://company.aha.io/integrations/6776881149498164474
                  resource: http://company.aha.io/api/v1/integrations/6776881149498164474
                  owner:
                    type: Account
                    id: '303742481'
                    url: http://company.aha.io/account/303742481
                    resource: http://company.aha.io/account/303742481
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IntegrationsPostRequest'
            example:
              integration:
                service_name: zendesk
                enabled: true
    get:
      summary: List integrations for an account
      description: null
      tags:
      - Integrations
      parameters: []
      responses:
        '200':
          description: Successful operation
          headers:
            Content-Type:
              description: application/json; charset=utf-8
              schema:
                type: string
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/IntegrationsGetResponse'
              example:
                integrations:
                - id: '79015308'
                  name: Salesforce
                  service_name: salesforce
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '84619270'
                  name: Salesforce V2
                  service_name: salesforce
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '163322775'
                  name: Activity webhook
                  service_name: audit_webhook
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '241856910'
                  name: Trello
                  service_name: trello
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '390243673'
                  name: Zendesk
                  service_name: zendesk
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '578818383'
                  name: Aha! (to Slack)
                  service_name: slack
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '828392279'
                  name: Security webhook
                  service_name: security_webhook
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '922472543'
                  name: Aha! (from Slack)
                  service_name: slack_commands
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '938531265'
                  name: Aha! (from Slack)
                  service_name: slack_commands
                  created_at: '2019-01-01T00:00:00.000Z'
                pagination:
                  total_records: 9
                  total_pages: 1
                  current_page: 1
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
  /api/v1/products/{product_id}/integrations:
    post:
      summary: Create an integration for a product
      description: null
      tags:
      - Integrations
      parameters:
      - name: product_id
        in: path
        required: true
        schema:
          type: string
        description: ProductId identifier
      responses:
        '200':
          description: Successful operation
          headers:
            Content-Type:
              description: application/json; charset=utf-8
              schema:
                type: string
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/IntegrationsPostResponse'
              example:
                integration:
                  id: '6776881149497259401'
                  service_name: jira
                  template_id: null
                  name: Jira
                  enabled: true
                  callback_token: 5e0c518000b1e19f
                  created_at: '2019-01-01T00:00:00.000Z'
                  updated_at: '2019-01-01T00:00:00.000Z'
                  last_error_at: null
                  last_webhook_request_at: null
                  url: http://company.aha.io/integrations/6776881149497259401
                  resource: http://company.aha.io/api/v1/integrations/6776881149497259401
                  jql_filter: null
                  owner:
                    type: Project
                    id: '131414752'
                    url: http://company.aha.io/projects/PRJ1
                    resource: http://company.aha.io/projects/PRJ1
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IntegrationsPostRequest'
            example:
              integration:
                service_name: zendesk
                enabled: true
    get:
      summary: List integrations for a product
      description: null
      tags:
      - Integrations
      parameters:
      - name: product_id
        in: path
        required: true
        schema:
          type: string
        description: ProductId identifier
      - name: '{}'
        in: query
        required: false
        schema:
          type: string
        example: null
      responses:
        '200':
          description: Successful operation
          headers:
            Content-Type:
              description: application/json; charset=utf-8
              schema:
                type: string
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/IntegrationsGetResponse'
              example:
                integrations:
                - id: '31907509'
                  name: Rally
                  service_name: rally
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '36231792'
                  name: GitHub Issues
                  service_name: github_issues
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '186281709'
                  name: Jira
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '202598724'
                  name: Jira via Connect
                  service_name: jira_connect
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '204584239'
                  name: Jira
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '207648948'
                  name: Jira
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '222276392'
                  name: Jira
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '322044925'
                  name: Jira
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '342659513'
                  name: Jira
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '386928799'
                  name: Azure DevOps Services
                  service_name: vsts
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '413207847'
                  name: Jira
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '453754848'
                  name: Jira
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '550349479'
                  name: Jira via Connect
                  service_name: jira_connect
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '583937884'
                  name: Jira template (visible to all)
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '706216981'
                  name: Rally
                  service_name: rally
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '791044582'
                  name: Azure DevOps Services
                  service_name: vsts
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '804274302'
                  name: Jira V2 Disabled
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '846899991'
                  name: Azure DevOps Services
                  service_name: tfs
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '868040294'
                  name: Rally
                  service_name: rally
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '945767377'
                  name: Trello
                  service_name: trello
                  created_at: '2019-01-01T00:00:00.000Z'
                - id: '952935179'
                  name: Jira
                  service_name: jira
                  created_at: '2019-01-01T00:00:00.000Z'
                pagination:
                  total_records: 21
                  total_pages: 1
                  current_page: 1
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
  /api/v1/products/{product_id}/integrations/{integration_id}:
    get:
      summary: Get a specific integration
      description: null
      tags:
      - Integrations
      parameters:
      - name: product_id
        in: path
        required: true
        schema:
          type: string
        description: ProductId identifier
      - name: integration_id
        in: path
        required: true
        schema:
          type: string
        description: IntegrationId identifier
      responses:
        '200':
          description: Successful operation
          headers:
            Content-Type:
              description: application/json; charset=utf-8
              schema:
                type: string
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/IntegrationsGetResponse'
              example:
                integration:
                  id: '204584239'
                  service_name: jira
                  template_id: null
                  name: Jira
                  enabled: true
                  callback_token: 22b7893e7fa1c4c60847090f78fbf0ec
                  created_at: '2019-01-01T00:00:00.000Z'
                  updated_at: '2019-01-01T00:00:00.000Z'
                  last_error_at: null
                  last_webhook_request_at: null
                  url: http://company.aha.io/integrations/204584239
                  resource: http://company.aha.io/api/v1/integrations/204584239
                  jql_filter: null
                  owner:
                    type: Project
                    id: '131414752'
                    url: http://company.aha.io/projects/PRJ1
                    resource: http://company.aha.io/projects/PRJ1
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
    put:
      summary: Enable integration
      description: null
      tags:
      - Integrations
      parameters:
      - name: product_id
        in: path
        required: true
        schema:
          type: string
        description: ProductId identifier
      - name: integration_id
        in: path
        required: true
        schema:
          type: string
        description: IntegrationId identifier
      responses:
        '200':
          description: Successful operation
          headers:
            Content-Type:
              description: application/json; charset=utf-8
              schema:
                type: string
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/IntegrationsPutResponse'
              example:
                integration:
                  id: '204584239'
                  service_name: jira
                  template_id: null
                  name: Jira
                  enabled: true
                  callback_token: 22b7893e7fa1c4c60847090f78fbf0ec
                  created_at: '2019-01-01T00:00:00.000Z'
                  updated_at: '2019-01-01T00:00:00.000Z'
                  last_error_at: null
                  last_webhook_request_at: null
                  url: http://company.aha.io/integrations/204584239
                  resource: http://company.aha.io/api/v1/integrations/204584239
                  jql_filter: null
                  owner:
                    type: Project
                    id: '131414752'
                    url: http://company.aha.io/projects/PRJ1
                    resource: http://company.aha.io/projects/PRJ1
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IntegrationsPostRequest'
            example:
              integration:
                enabled: true
  /api/v1/products/{product_id}/integrations/{service_name}:
    get:
      summary: Get a specific integration by service name
      description: 'DEPRECATED: provide :integration_id rather than :service_name to identify the integration.'
      tags:
      - Integrations
      parameters:
      - name: product_id
        in: path
        required: true
        schema:
          type: string
        description: ProductId identifier
      - name: service_name
        in: path
        required: true
        schema:
          type: string
        description: ServiceName identifier
      responses:
        '200':
          description: Successful operation
          headers:
            Content-Type:
              description: application/json; charset=utf-8
              schema:
                type: string
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/IntegrationsGetResponse'
              example:
                integration:
                  id: '204584239'
                  service_name: jira
                  template_id: null
                  name: Jira
                  enabled: true
                  callback_token: 22b7893e7fa1c4c60847090f78fbf0ec
                  created_at: '2019-01-01T00:00:00.000Z'
                  updated_at: '2019-01-01T00:00:00.000Z'
                  last_error_at: null
                  last_webhook_request_at: null
                  url: http://company.aha.io/integrations/204584239
                  resource: http://company.aha.io/api/v1/integrations/204584239
                  jql_filter: null
                  owner:
                    type: Project
                    id: '131414752'
                    url: http://company.aha.io/projects/PRJ1
                    resource: http://company.aha.io/projects/PRJ1
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
components:
  schemas:
    IntegrationsPostRequest:
      type: object
      properties:
        integration:
          type: object
          properties:
            enabled:
              type: boolean
              example: true
          example:
            enabled: true
      example:
        integration:
          enabled: true
    IntegrationsPutResponse:
      type: object
      properties:
        integration:
          type: object
          properties:
            id:
              type: string
              example: '204584239'
            service_name:
              type: string
              example: jira
            template_id:
              type: 'null'
            name:
              type: string
              example: Jira
            enabled:
              type: boolean
              example: true
            callback_token:
              type: string
              example: 22b7893e7fa1c4c60847090f78fbf0ec
            created_at:
              type: string
              example: '2019-01-01T00:00:00.000Z'
            updated_at:
              type: string
              example: '2019-01-01T00:00:00.000Z'
            last_error_at:
              type: 'null'
            last_webhook_request_at:
              type: 'null'
            url:
              type: string
              example: http://company.aha.io/integrations/204584239
            resource:
              type: string
              example: http://company.aha.io/api/v1/integrations/204584239
            jql_filter:
              type: 'null'
            owner:
              type: object
              properties:
                type:
                  type: string
                  example: Project
                id:
                  type: string
                  example: '131414752'
                url:
                  type: string
                  example: http://company.aha.io/projects/PRJ1
                resource:
                  type: string
                  example: http://company.aha.io/projects/PRJ1
              example:
                type: Project
                id: '131414752'
                url: http://company.aha.io/projects/PRJ1
                resource: http://company.aha.io/projects/PRJ1
          example:
            id: '204584239'
            service_name: jira
            template_id: null
            name: Jira
            enabled: true
            callback_token: 22b7893e7fa1c4c60847090f78fbf0ec
            created_at: '2019-01-01T00:00:00.000Z'
            updated_at: '2019-01-01T00:00:00.000Z'
            last_error_at: null
            last_webhook_request_at: null
            url: http://company.aha.io/integrations/204584239
            resource: http://company.aha.io/api/v1/integrations/204584239
            jql_filter: null
            owner:
              type: Project
              id: '131414752'
              url: http://company.aha.io/projects/PRJ1
              resource: http://company.aha.io/projects/PRJ1
      example:
        integration:
          id: '204584239'
          service_name: jira
          template_id: null
          name: Jira
          enabled: true
          callback_token: 22b7893e7fa1c4c60847090f78fbf0ec
          created_at: '2019-01-01T00:00:00.000Z'
          updated_at: '2019-01-01T00:00:00.000Z'
          last_error_at: null
          last_webhook_request_at: null
          url: http://company.aha.io/integrations/204584239
          resource: http://company.aha.io/api/v1/integrations/204584239
          jql_filter: null
          owner:
            type: Project
            id: '131414752'
            url: http://company.aha.io/projects/PRJ1
            resource: http://company.aha.io/projects/PRJ1
    IntegrationsGetResponse:
      type: object
      properties:
        integration:
          type: object
          properties:
            id:
              type: string
              example: '204584239'
            service_name:
              type: string
              example: jira
            template_id:
              type: 'null'
            name:
              type: string
              example: Jira
            enabled:
              type: boolean
              example: true
            callback_token:
              type: string
              example: 22b7893e7fa1c4c60847090f78fbf0ec
            created_at:
              type: string
              example: '2019-01-01T00:00:00.000Z'
            updated_at:
              type: string
              example: '2019-01-01T00:00:00.000Z'
            last_error_at:
              type: 'null'
            last_webhook_request_at:
              type: 'null'
            url:
              type: string
              example: http://company.aha.io/integrations/204584239
            resource:
              type: string
              example: http://company.aha.io/api/v1/integrations/204584239
            jql_filter:
              type: 'null'
            owner:
              type: object
              properties:
                type:
                  type: string
                  example: Project
                id:
                  type: string
                  example: '131414752'
                url:
                  type: string
                  example: http://company.aha.io/projects/PRJ1
                resource:
                  type: string
                  example: http://company.aha.io/projects/PRJ1
              example:
                type: Project
                id: '131414752'
                url: http://company.aha.io/projects/PRJ1
                resource: http://company.aha.io/projects/PRJ1
          example:
            id: '204584239'
            service_name: jira
            template_id: null
            name: Jira
            enabled: true
            callback_token: 22b7893e7fa1c4c60847090f78fbf0ec
            created_at: '2019-01-01T00:00:00.000Z'
            updated_at: '2019-01-01T00:00:00.000Z'
            last_error_at: null
            last_webhook_request_at: null
            url: http://company.aha.io/integrations/204584239
            resource: http://company.aha.io/api/v1/integrations/204584239
            jql_filter: null
            owner:
              type: Project
              id: '131414752'
              url: http://company.aha.io/projects/PRJ1
              resource: http://company.aha.io/projects/PRJ1
      example:
        integration:
          id: '204584239'
          service_name: jira
          template_id: null
          name: Jira
          enabled: true
          callback_token: 22b7893e7fa1c4c60847090f78fbf0ec
          created_at: '2019-01-01T00:00:00.000Z'
          updated_at: '2019-01-01T00:00:00.000Z'
          last_error_at: null
          last_webhook_request_at: null
          url: http://company.aha.io/integrations/204584239
          resource: http://company.aha.io/api/v1/integrations/204584239
          jql_filter: null
          owner:
            type: Project
            id: '131414752'
            url: http://company.aha.io/projects/PRJ1
            resource: http://company.aha.io/projects/PRJ1
    IntegrationsPostResponse:
      type: object
      properties:
        integration:
          type: object
          properties:
            id:
              type: string
              example: '6776881149497259401'
            service_name:
              type: string
              example: jira
            template_id:
              type: 'null'
            name:
              type: string
              example: Jira
            enabled:
              type: boolean
              example: true
            callback_token:
              type: string
              example: 5e0c518000b1e19f
            created_at:
              type: string
              example: '2019-01-01T00:00:00.000Z'
            updated_at:
              type: string
              example: '2019-01-01T00:00:00.000Z'
            last_error_at:
              type: 'null'
            last_webhook_request_at:
              type: 'null'
            url:
              type: string
              example: http://company.aha.io/integrations/6776881149497259401
            resource:
              type: string
              example: http://company.aha.io/api/v1/integrations/6776881149497259401
            jql_filter:
              type: 'null'
            owner:
              type: object
              properties:
                type:
                  type: string
                  example: Project
                id:
                  type: string
                  example: '131414752'
                url:
                  type: string
                  example: http://company.aha.io/projects/PRJ1
                resource:
                  type: string
                  example: http://company.aha.io/projects/PRJ1
              example:
                type: Project
                id: '131414752'
                url: http://company.aha.io/projects/PRJ1
                resource: http://company.aha.io/projects/PRJ1
          example:
            id: '6776881149497259401'
            service_name: jira
            template_id: null
            name: Jira
            enabled: true
            callback_token: 5e0c518000b1e19f
            created_at: '2019-01-01T00:00:00.000Z'
            updated_at: '2019-01-01T00:00:00.000Z'
            last_error_at: null
            last_webhook_request_at: null
            url: http://company.aha.io/integrations/6776881149497259401
            resource: http://company.aha.io/api/v1/integrations/6776881149497259401
            jql_filter: null
            owner:
              type: Project
              id: '131414752'
              url: http://company.aha.io/projects/PRJ1
              resource: http://company.aha.io/projects/PRJ1
      example:
        integration:
          id: '6776881149497259401'
          service_name: jira
          template_id: null
          name: Jira
          enabled: true
          callback_token: 5e0c518000b1e19f
          created_at: '2019-01-01T00:00:00.000Z'
          updated_at: '2019-01-01T00:00:00.000Z'
          last_error_at: null
          last_webhook_request_at: null
          url: http://company.aha.io/integrations/6776881149497259401
          resource: http://company.aha.io/api/v1/integrations/6776881149497259401
          jql_filter: null
          owner:
            type: Project
            id: '131414752'
            url: http://company.aha.io/projects/PRJ1
            resource: http://company.aha.io/projects/PRJ1
  securitySchemes:
    OAuth2:
      type: oauth2
      description: OAuth2 authentication with bearer tokens
      flows:
        authorizationCode:
          authorizationUrl: https://{account-domain}.aha.io/oauth/authorize
          tokenUrl: https://{account-domain}.aha.io/oauth/token
          scopes: {}
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: API key authentication using Bearer token in Authorization header. Generate API keys at https://secure.aha.io/settings/api_keys
    CookieAuth:
      type: apiKey
      in: cookie
      name: session
      description: Cookie-based authentication for web browser integration