Palo Alto Networks Asset Relationship Definitions API

The Asset Relationship Type Management APIs enable you to list information about Prisma cloud asset relationship type definitions and asset relationship definitions

Operations 2

GET /rtm/api/v1/asset-relationship-type-definition List Asset Relationship Type Definitions #
GET /rtm/api/v1/asset-relationship-definition List Asset Relationship Definitions #

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-asset-relationship-definitions-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-asset-relationship-definitions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Prisma Cloud Asset Relationship Type Manager Definition Overview Asset Relationship Definitions API
  description: 'The Asset Relationship Type Management APIs enable you to list information about Prisma cloud asset relationship type definitions and asset relationship definitions '
  version: '1.0'
servers:
- url: https://api.prismacloud.io
- url: https://api2.prismacloud.io
- url: https://api3.prismacloud.io
- url: https://api4.prismacloud.io
- url: https://api.anz.prismacloud.io
- url: https://api.eu.prismacloud.io
- url: https://api2.eu.prismacloud.io
- url: https://api.gov.prismacloud.io
- url: https://api.prismacloud.cn
- url: https://api.ca.prismacloud.io
- url: https://api.sg.prismacloud.io
- url: https://api.uk.prismacloud.io
- url: https://api.ind.prismacloud.io
- url: https://api.jp.prismacloud.io
- url: https://api.fr.prismacloud.io
tags:
- name: Asset Relationship Definitions
  description: The Asset Relationship Type Management APIs enable you to list information about Prisma cloud asset relationship type definitions and asset relationship definitions
paths:
  /rtm/api/v1/asset-relationship-type-definition:
    get:
      tags:
      - Asset Relationship Definitions
      summary: List Asset Relationship Type Definitions
      description: Returns a list of all the supported relationship types in Prisma cloud.
      operationId: get-asset-relationship-type-definitions
      parameters:
      - name: nextPageToken
        in: query
        description: Page token from the response object of an earlier request to get next page asset relationship type definitions.
        required: false
        schema:
          type: String
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrismaAssetRelationshipTypeDefinitionBeanPage'
        '429':
          description: Too many requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '400':
          description: Internal Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized - user cannot be authenticated to service the request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '425':
          description: Too early to access the resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      x-public: 'true'
      security:
      - x-redlock-auth: []
  /rtm/api/v1/asset-relationship-definition:
    get:
      tags:
      - Asset Relationship Definitions
      summary: List Asset Relationship Definitions
      description: Returns a list of supported relationships between assets for all cloud types.
      operationId: get-asset-relationship-definitions
      parameters:
      - name: nextPageToken
        in: query
        description: Page token from the response object of an earlier request to get next page asset relationship definitions.
        required: false
        schema:
          type: String
      responses:
        '429':
          description: Too many requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '400':
          description: Internal Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrismaAssetRelationshipDefinitionBeanPage'
        '401':
          description: Unauthorized - user cannot be authenticated to service the request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '425':
          description: Too early to access the resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      x-public: 'true'
      security:
      - x-redlock-auth: []
components:
  schemas:
    TargetAPIDefinition:
      required:
      - displayName
      - id
      - name
      type: object
      properties:
        id:
          type: integer
          description: API Id
          format: int64
        name:
          type: string
          description: API name
        displayName:
          type: string
          description: API readable name
      description: Indicates the Target API
    PrismaAssetRelationshipTypeDefinitionBean:
      required:
      - displayName
      - id
      - name
      type: object
      properties:
        id:
          type: integer
          description: Asset Relationship Type Id
          format: int64
        name:
          type: string
          description: Asset Relationship Type name
        displayName:
          type: string
          description: Asset Relationship Type readable name
        inverseName:
          type: string
          description: Asset Relationship Type inverse name
        inverseDisplayName:
          type: string
          description: Asset Relationship Type readable inverse name
      description: Indicates the Relationship Type
    SourceAPIDefinition:
      required:
      - displayName
      - id
      - name
      type: object
      properties:
        id:
          type: integer
          description: API Id
          format: int64
        name:
          type: string
          description: API name
        displayName:
          type: string
          description: API readable name
      description: Indicates the Source API
    PrismaAssetRelationshipTypeDefinitionBeanPage:
      type: object
      properties:
        nextPageToken:
          type: string
        value:
          type: array
          items:
            $ref: '#/components/schemas/PrismaAssetRelationshipTypeDefinitionBean'
    ApiError:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/Error'
    PrismaAssetRelationshipDefinitionBeanPage:
      type: object
      properties:
        nextPageToken:
          type: string
        value:
          type: array
          items:
            $ref: '#/components/schemas/PrismaAssetRelationshipDefinitionBean'
    PrismaAssetRelationshipDefinitionBean:
      required:
      - relationshipType
      - sourceApi
      - targetApi
      type: object
      properties:
        sourceApi:
          $ref: '#/components/schemas/SourceAPIDefinition'
        targetApi:
          $ref: '#/components/schemas/TargetAPIDefinition'
        relationshipType:
          $ref: '#/components/schemas/PrismaAssetRelationshipTypeDefinitionBean'
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
  securitySchemes:
    x-redlock-auth:
      description: The x-redlock-auth value is a JSON Web Token (JWT).
      in: header
      name: x-redlock-auth
      type: apiKey