AppDynamics Health Rules API

Manage health rules that define performance thresholds and violation conditions for monitored applications.

Operations 10

GET /alerting/rest/v1/applications/{applicationId}/health-rules List health rules for an application #
POST /alerting/rest/v1/applications/{applicationId}/health-rules Create a health rule #
GET /alerting/rest/v1/applications/{applicationId}/health-rules/{healthRuleId} Get a specific health rule #
PUT /alerting/rest/v1/applications/{applicationId}/health-rules/{healthRuleId} Update a health rule #
DELETE /alerting/rest/v1/applications/{applicationId}/health-rules/{healthRuleId} Delete a health rule #
GET /v1/health-rules List health rules #
POST /v1/health-rules Create a health rule #
GET /v1/health-rules/{healthRuleId} Get a specific health rule #
PUT /v1/health-rules/{healthRuleId} Update a health rule #
DELETE /v1/health-rules/{healthRuleId} Delete a health rule #

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/appdynamics-health-rules-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

appdynamics-health-rules-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Appdynamics Health Rules API
  termsOfService: https://www.cisco.com/c/en/us/about/legal/cloud-and-software.html
  version: '1.0'
  description: 'Operations tagged Health Rules across 2 of this provider''s published API definitions: appdynamics-alert-and-respond-api-openapi.yml, appdynamics-cloud-observability-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{controller-host}/controller
  description: AppDynamics Controller
  variables:
    controller-host:
      default: example.saas.appdynamics.com
      description: The hostname of your AppDynamics Controller instance.
- url: https://{tenant}.observe.appdynamics.com/cloud
  description: Cisco Cloud Observability Platform
  variables:
    tenant:
      default: example
      description: Your Cisco Cloud Observability tenant name.
tags:
- name: Health Rules
  description: Manage health rules that define performance thresholds and violation conditions for monitored applications.
paths:
  /alerting/rest/v1/applications/{applicationId}/health-rules:
    get:
      operationId: listHealthRules
      summary: List health rules for an application
      description: Returns all health rules configured for the specified application including their conditions, thresholds, and evaluation criteria.
      tags:
      - Health Rules
      parameters:
      - $ref: '#/components/parameters/applicationId'
      responses:
        '200':
          description: Successful retrieval of health rules
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HealthRule'
        '401':
          description: Unauthorized - invalid or missing credentials
        '404':
          description: Application not found
      security:
      - bearerAuth: []
      - basicAuth: []
    post:
      operationId: createHealthRule
      summary: Create a health rule
      description: Creates a new health rule for the specified application with the provided configuration including affected entities, evaluation criteria, and thresholds.
      tags:
      - Health Rules
      parameters:
      - $ref: '#/components/parameters/applicationId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HealthRule'
      responses:
        '201':
          description: Health rule created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthRule'
        '400':
          description: Bad request - invalid health rule configuration
        '401':
          description: Unauthorized - invalid or missing credentials
        '404':
          description: Application not found
      security:
      - bearerAuth: []
      - basicAuth: []
    servers:
    - url: https://{controller-host}/controller
      description: AppDynamics Controller
      variables:
        controller-host:
          default: example.saas.appdynamics.com
          description: The hostname of your AppDynamics Controller instance.
  /alerting/rest/v1/applications/{applicationId}/health-rules/{healthRuleId}:
    get:
      operationId: getHealthRule
      summary: Get a specific health rule
      description: Returns the full configuration for a specific health rule identified by its ID.
      tags:
      - Health Rules
      parameters:
      - $ref: '#/components/parameters/applicationId'
      - $ref: '#/components/parameters/healthRuleId'
      responses:
        '200':
          description: Successful retrieval of health rule
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthRule'
        '401':
          description: Unauthorized - invalid or missing credentials
        '404':
          description: Health rule or application not found
      security:
      - bearerAuth: []
      - basicAuth: []
    put:
      operationId: updateHealthRule
      summary: Update a health rule
      description: Updates an existing health rule with the provided configuration. The full health rule object must be sent in the request body.
      tags:
      - Health Rules
      parameters:
      - $ref: '#/components/parameters/applicationId'
      - $ref: '#/components/parameters/healthRuleId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HealthRule'
      responses:
        '200':
          description: Health rule updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthRule'
        '400':
          description: Bad request - invalid health rule configuration
        '401':
          description: Unauthorized - invalid or missing credentials
        '404':
          description: Health rule or application not found
      security:
      - bearerAuth: []
      - basicAuth: []
    delete:
      operationId: deleteHealthRule
      summary: Delete a health rule
      description: Deletes the specified health rule from the application.
      tags:
      - Health Rules
      parameters:
      - $ref: '#/components/parameters/applicationId'
      - $ref: '#/components/parameters/healthRuleId'
      responses:
        '204':
          description: Health rule deleted successfully
        '401':
          description: Unauthorized - invalid or missing credentials
        '404':
          description: Health rule or application not found
      security:
      - bearerAuth: []
      - basicAuth: []
    servers:
    - url: https://{controller-host}/controller
      description: AppDynamics Controller
      variables:
        controller-host:
          default: example.saas.appdynamics.com
          description: The hostname of your AppDynamics Controller instance.
  /v1/health-rules:
    get:
      operationId: listCloudHealthRules
      summary: List health rules
      description: Returns all health rules configured on the Cisco Observability Platform for monitoring cloud entities.
      tags:
      - Health Rules
      responses:
        '200':
          description: Successful retrieval of health rules
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    description: Array of health rule objects.
                    items:
                      $ref: '#/components/schemas/CloudHealthRule'
        '401':
          description: Unauthorized - invalid or expired access token
      security:
      - bearerAuth: []
    post:
      operationId: createCloudHealthRule
      summary: Create a health rule
      description: Creates a new health rule to define performance thresholds and violation conditions for monitored cloud entities.
      tags:
      - Health Rules
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CloudHealthRule'
      responses:
        '201':
          description: Health rule created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudHealthRule'
        '400':
          description: Bad request - invalid health rule configuration
        '401':
          description: Unauthorized - invalid or expired access token
      security:
      - bearerAuth: []
    servers:
    - url: https://{tenant}.observe.appdynamics.com/cloud
      description: Cisco Cloud Observability Platform
      variables:
        tenant:
          default: example
          description: Your Cisco Cloud Observability tenant name.
  /v1/health-rules/{healthRuleId}:
    get:
      operationId: getCloudHealthRule
      summary: Get a specific health rule
      description: Returns the configuration for a specific health rule.
      tags:
      - Health Rules
      parameters:
      - $ref: '#/components/parameters/healthRuleId_2'
      responses:
        '200':
          description: Successful retrieval of health rule
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudHealthRule'
        '401':
          description: Unauthorized - invalid or expired access token
        '404':
          description: Health rule not found
      security:
      - bearerAuth: []
    put:
      operationId: updateCloudHealthRule
      summary: Update a health rule
      description: Updates an existing health rule with new configuration.
      tags:
      - Health Rules
      parameters:
      - $ref: '#/components/parameters/healthRuleId_2'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CloudHealthRule'
      responses:
        '200':
          description: Health rule updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudHealthRule'
        '400':
          description: Bad request - invalid health rule configuration
        '401':
          description: Unauthorized - invalid or expired access token
        '404':
          description: Health rule not found
      security:
      - bearerAuth: []
    delete:
      operationId: deleteCloudHealthRule
      summary: Delete a health rule
      description: Deletes the specified health rule.
      tags:
      - Health Rules
      parameters:
      - $ref: '#/components/parameters/healthRuleId_2'
      responses:
        '204':
          description: Health rule deleted successfully
        '401':
          description: Unauthorized - invalid or expired access token
        '404':
          description: Health rule not found
      security:
      - bearerAuth: []
    servers:
    - url: https://{tenant}.observe.appdynamics.com/cloud
      description: Cisco Cloud Observability Platform
      variables:
        tenant:
          default: example
          description: Your Cisco Cloud Observability tenant name.
components:
  parameters:
    applicationId:
      name: applicationId
      in: path
      required: true
      description: The numeric ID of the business application.
      schema:
        type: integer
        format: int64
    healthRuleId:
      name: healthRuleId
      in: path
      required: true
      description: The numeric ID of the health rule.
      schema:
        type: integer
        format: int64
    healthRuleId_2:
      name: healthRuleId
      in: path
      required: true
      description: The unique identifier of the health rule.
      schema:
        type: string
  schemas:
    HealthRule:
      type: object
      description: A health rule that defines performance thresholds and conditions for triggering violations on monitored entities.
      properties:
        id:
          type: integer
          format: int64
          description: The internal numeric identifier for the health rule.
        name:
          type: string
          description: The name of the health rule.
        enabled:
          type: boolean
          description: Whether the health rule is currently enabled.
        useDataFromLastNMinutes:
          type: integer
          description: The evaluation time window in minutes.
        waitTimeAfterViolation:
          type: integer
          description: Time in minutes to wait after a violation before re-evaluating.
        scheduleName:
          type: string
          description: The schedule that determines when this health rule is active.
        affects:
          type: object
          description: The entity scope affected by this health rule including affected entity type and selection criteria.
        evalCriterias:
          type: object
          description: The evaluation criteria containing critical and warning conditions with their metric thresholds.
    CloudHealthRule:
      type: object
      description: A health rule on the Cisco Observability Platform that defines performance thresholds for monitored cloud entities.
      properties:
        id:
          type: string
          description: The unique identifier of the health rule.
        name:
          type: string
          description: The name of the health rule.
        description:
          type: string
          description: A description of the health rule purpose.
        enabled:
          type: boolean
          description: Whether the health rule is currently enabled.
        entityType:
          type: string
          description: The type of entity this health rule monitors.
        entityFilter:
          type: object
          description: Filter criteria for selecting which entities are monitored.
        conditions:
          type: array
          description: The conditions that define violations for this health rule.
          items:
            type: object
            properties:
              metric:
                type: string
                description: The metric to evaluate.
              operator:
                type: string
                description: The comparison operator.
              threshold:
                type: number
                description: The threshold value.
              severity:
                type: string
                description: The severity level for violations.
                enum:
                - CRITICAL
                - WARNING
        createdAt:
          type: string
          format: date-time
          description: The timestamp when the health rule was created.
        updatedAt:
          type: string
          format: date-time
          description: The timestamp when the health rule was last updated.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 access token obtained from the /controller/api/oauth/access_token endpoint.
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic authentication using user@account:password format.
x-refined-from:
- appdynamics-alert-and-respond-api-openapi.yml
- appdynamics-cloud-observability-api-openapi.yml