AppDynamics Database Collectors API

Manage database collectors that monitor performance and availability of database instances including creation, retrieval, update, and deletion.

Operations 6

GET /rest/databases/collectors List all database collectors #
GET /rest/databases/collectors/{configurationId} Get a specific database collector #
DELETE /rest/databases/collectors/{configurationId} Delete a database collector #
POST /rest/databases/collectors/create Create a database collector #
POST /rest/databases/collectors/update Update a database collector #
POST /rest/databases/collectors/batchDelete Batch delete database collectors #

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-database-collectors-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-database-collectors-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AppDynamics Database Agent Database Collectors API
  description: The AppDynamics Database Agent API provides HTTP endpoints for managing Database Monitoring database Collectors. Developers can programmatically create, retrieve, update, and delete database collectors that monitor the performance and availability of database instances. This API enables automation of database monitoring setup and management, making it possible to scale database visibility across large environments without manual configuration through the Controller UI.
  version: 23.x
  contact:
    name: Splunk AppDynamics Support
    url: https://www.appdynamics.com/support
  termsOfService: https://www.cisco.com/c/en/us/about/legal/cloud-and-software.html
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.
security:
- bearerAuth: []
- basicAuth: []
tags:
- name: Database Collectors
  description: Manage database collectors that monitor performance and availability of database instances including creation, retrieval, update, and deletion.
paths:
  /rest/databases/collectors:
    get:
      operationId: listDatabaseCollectors
      summary: List all database collectors
      description: Returns a list of all configured database collectors with their connection details, monitoring status, and configuration settings.
      tags:
      - Database Collectors
      responses:
        '200':
          description: Successful retrieval of database collector list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DatabaseCollector'
        '401':
          description: Unauthorized - invalid or missing credentials
  /rest/databases/collectors/{configurationId}:
    get:
      operationId: getDatabaseCollector
      summary: Get a specific database collector
      description: Returns the full configuration details for a specific database collector identified by its configuration ID.
      tags:
      - Database Collectors
      parameters:
      - $ref: '#/components/parameters/configurationId'
      responses:
        '200':
          description: Successful retrieval of database collector
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatabaseCollector'
        '401':
          description: Unauthorized - invalid or missing credentials
        '404':
          description: Database collector not found
    delete:
      operationId: deleteDatabaseCollector
      summary: Delete a database collector
      description: Deletes the specified database collector and stops monitoring the associated database instance.
      tags:
      - Database Collectors
      parameters:
      - $ref: '#/components/parameters/configurationId'
      responses:
        '200':
          description: Database collector deleted successfully
        '401':
          description: Unauthorized - invalid or missing credentials
        '404':
          description: Database collector not found
  /rest/databases/collectors/create:
    post:
      operationId: createDatabaseCollector
      summary: Create a database collector
      description: Creates a new database collector with the specified connection details and monitoring configuration. The required fields vary based on the type of database being monitored.
      tags:
      - Database Collectors
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DatabaseCollector'
      responses:
        '200':
          description: Database collector created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatabaseCollector'
        '400':
          description: Bad request - invalid collector configuration
        '401':
          description: Unauthorized - invalid or missing credentials
  /rest/databases/collectors/update:
    post:
      operationId: updateDatabaseCollector
      summary: Update a database collector
      description: Updates an existing database collector with modified configuration. Retrieve the current configuration first using GET, modify the desired fields, and send the complete object back.
      tags:
      - Database Collectors
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DatabaseCollector'
      responses:
        '200':
          description: Database collector updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatabaseCollector'
        '400':
          description: Bad request - invalid collector configuration
        '401':
          description: Unauthorized - invalid or missing credentials
        '404':
          description: Database collector not found
  /rest/databases/collectors/batchDelete:
    post:
      operationId: batchDeleteDatabaseCollectors
      summary: Batch delete database collectors
      description: Deletes multiple database collectors in a single request by providing an array of configuration IDs.
      tags:
      - Database Collectors
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              description: Array of configuration IDs to delete.
              items:
                type: integer
                format: int64
      responses:
        '200':
          description: Database collectors deleted successfully
        '400':
          description: Bad request - invalid configuration IDs
        '401':
          description: Unauthorized - invalid or missing credentials
components:
  schemas:
    DatabaseCollector:
      type: object
      description: A database collector configuration that defines how to connect to and monitor a specific database instance.
      properties:
        id:
          type: integer
          format: int64
          description: The internal configuration ID for the database collector.
        name:
          type: string
          description: The display name for the database collector.
        type:
          type: string
          description: The type of database being monitored.
          enum:
          - MYSQL
          - ORACLE
          - MSSQL
          - POSTGRESQL
          - MONGODB
          - SYBASE
          - DB2
          - AURORA
        hostname:
          type: string
          description: The hostname or IP address of the database server.
        port:
          type: integer
          description: The port number for the database connection.
          minimum: 1
          maximum: 65535
        username:
          type: string
          description: The username for authenticating with the database.
        password:
          type: string
          description: The password for authenticating with the database. Only used in create and update requests.
        databaseName:
          type: string
          description: The name of the specific database to monitor.
        enabled:
          type: boolean
          description: Whether the database collector is enabled and actively monitoring.
        agentName:
          type: string
          description: The name of the Database Agent responsible for this collector.
        excludedSchemas:
          type: array
          description: List of schema names to exclude from monitoring.
          items:
            type: string
  parameters:
    configurationId:
      name: configurationId
      in: path
      required: true
      description: The numeric configuration ID of the database collector.
      schema:
        type: integer
        format: int64
  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.
externalDocs:
  description: Database Visibility API Documentation
  url: https://docs.appdynamics.com/appd/23.x/latest/en/extend-appdynamics/appdynamics-apis/database-visibility-api