Palo Alto Networks Deployment Profiles API

Operations related to deployment profile management

Operations 1

GET /v1/mgmt/deploymentprofiles Get All Deployment Profiles #

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-deployment-profiles-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-deployment-profiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Prisma AIRS API Management service Deployment Profiles API
  description: OpenAPI Specification for Prisma AIRS AI Runtime API Management Service
  version: 0.0.0
  contact:
    name: Palo Alto Networks
    url: https://www.paloaltonetworks.com
    email: support@paloaltonetworks.com
servers:
- url: https://api.sase.paloaltonetworks.com/aisec
  description: Prisma AIRS API service URL
tags:
- name: Deployment Profiles
  description: Operations related to deployment profile management
paths:
  /v1/mgmt/deploymentprofiles:
    get:
      summary: Get All Deployment Profiles
      description: Get all Deployment Profiles for a given TSG ID.
      tags:
      - Deployment Profiles
      security:
      - Auth: []
      operationId: GetDeploymentProfilesByTsgId
      parameters:
      - name: unactivated
        in: query
        description: Get available and unactivated Deployment Profiles. Also include previously activated DP that do not have any associated apps or api keys.
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: Successfully returned Deployment Profiles for TSG Id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentProfilesObject'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        default:
          description: error occurred
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DeploymentProfilesObject:
      type: object
      properties:
        deployment_profiles:
          type: array
          items:
            $ref: '#/components/schemas/DeploymentProfileEntryObject'
        status:
          type: string
      required:
      - deployment_profiles
      - status
    DeploymentProfileEntryObject:
      type: object
      properties:
        dp_name:
          type: string
        auth_code:
          type: string
        tsg_id:
          type: string
        status:
          type: string
        expiration_date:
          type: string
        ave_text_records:
          type: integer
          format: int32
      required:
      - dp_name
      - auth_code
    Error:
      type: object
      properties:
        status_code:
          type: integer
          format: int32
        error_message:
          type: string
      required:
      - status_code
      - error_message
  securitySchemes:
    Auth:
      type: http
      scheme: bearer
      bearerFormat: JWT