Palo Alto Networks JIRA API

The JIRA API from Palo Alto Networks — 3 operation(s) for jira.

Operations 3

GET /sspm/api/v1/integration/integrations/{integration_id}/{integration_type}/issue/{key} JIRA Ticket Issue Details #
GET /sspm/api/v1/integration/integrations/{integration_id}/{integration_type}/project/{key} JIRA Ticket Project Details #
GET /sspm/api/v1/integration/integrations/{integration_id}/{integration_type}/projects JIRA Ticket Project List #

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/palo-alto-networks-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 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

palo-alto-networks-jira-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SSPM Management JIRA API
  version: 1.0.0
  description: © 2025 Palo Alto Networks, Inc This Open API spec file was created on March 02, 2026. © 2026 Palo Alto Networks, Inc. Palo Alto Networks is a registered trademark of Palo Alto Networks. A list of our trademarks can be found at [https://www.paloaltonetworks.com/company/trademarks.html](https://www.paloaltonetworks.com/company/trademarks.html). All other marks mentioned herein may be trademarks of their respective companies.
servers:
- url: https://api.sase.paloaltonetworks.com
- url: https://api.strata.paloaltonetworks.com
tags:
- name: JIRA
paths:
  /sspm/api/v1/integration/integrations/{integration_id}/{integration_type}/issue/{key}:
    get:
      summary: JIRA Ticket Issue Details
      description: Retrieve onboarded JIRA ticketing issue details by key.
      operationId: getJiraIssue
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JiraIssueResponse'
          description: successful operation
        '404':
          description: not registered jira-ticketing integration
      parameters:
      - description: region
        in: header
        name: x-panw-region
        required: false
        schema:
          type: string
      - description: integration id
        example: 65dcec42a2f1d37173e6294c
        in: path
        name: integration_id
        required: true
        schema:
          type: string
      - description: integration type
        example: JIRA_TICKETING
        in: path
        name: integration_type
        required: true
        schema:
          type: string
      - description: issue key
        example: '10001'
        in: path
        name: key
        required: true
        schema:
          type: string
      tags:
      - JIRA
  /sspm/api/v1/integration/integrations/{integration_id}/{integration_type}/project/{key}:
    get:
      summary: JIRA Ticket Project Details
      description: Retrieve onboarded JIRA ticketing project details by key.
      operationId: getJiraProjectDetail
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JiraProjectDetailResponse'
          description: successful operation
        '404':
          description: not registered jira-ticketing integration
      parameters:
      - description: region
        in: header
        name: x-panw-region
        required: false
        schema:
          type: string
      - description: integration id
        example: 65dcec42a2f1d37173e6294c
        in: path
        name: integration_id
        required: true
        schema:
          type: string
      - description: integration type
        example: JIRA_TICKETING
        in: path
        name: integration_type
        required: true
        schema:
          type: string
      - description: project key
        example: TestProject
        in: path
        name: key
        required: true
        schema:
          type: string
      tags:
      - JIRA
  /sspm/api/v1/integration/integrations/{integration_id}/{integration_type}/projects:
    get:
      summary: JIRA Ticket Project List
      description: Retrieve the onboarded JIRA ticketing project list.
      operationId: getJiraProjects
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
          description: successful operation
        '404':
          description: not registered jira-ticketing integration
      parameters:
      - description: region
        in: header
        name: x-panw-region
        required: false
        schema:
          type: string
      - description: integration id
        example: 65dcec42a2f1d37173e6294c
        in: path
        name: integration_id
        required: true
        schema:
          type: string
      - description: integration type
        example: JIRA_TICKETING
        in: path
        name: integration_type
        required: true
        schema:
          type: string
      tags:
      - JIRA
components:
  schemas:
    JiraIdentity:
      properties:
        accountId:
          type: string
        displayName:
          type: string
      type: object
    Status:
      properties:
        name:
          type: string
      type: object
    JiraIssueFields:
      properties:
        assignee:
          $ref: '#/components/schemas/JiraIdentity'
        reporter:
          $ref: '#/components/schemas/JiraIdentity'
        status:
          $ref: '#/components/schemas/Status'
      type: object
    JiraProjectDetailResponse:
      properties:
        issueTypes:
          items:
            $ref: '#/components/schemas/JiraIssueType'
          type: array
      type: object
    JiraIssueResponse:
      properties:
        fields:
          $ref: '#/components/schemas/JiraIssueFields'
      type: object
    JiraIssueType:
      properties:
        id:
          type: string
        name:
          type: string
      type: object