Verta MonitoredEntityService API

The MonitoredEntityService API from Verta — 4 operation(s) for monitoredentityservice.

Operations 4

POST /api/v1/monitoring/monitored_entity/createMonitoredEntity #
DELETE /api/v1/monitoring/monitored_entity/deleteMonitoredEntity #
POST /api/v1/monitoring/monitored_entity/findMonitoredEntity #
PATCH /api/v1/monitoring/monitored_entity/updateMonitoredEntity #

Specifications

Other Resources

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/verta-monitoredentityservice-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

verta-monitoredentityservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: deployment/APISync.proto AuthzService Monitored Entity Service API
  version: version not set
servers:
- url: /v1
tags:
- name: MonitoredEntityService
paths:
  /api/v1/monitoring/monitored_entity/createMonitoredEntity:
    post:
      operationId: MonitoredEntityService_createMonitoredEntity
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/monitoringCreateMonitoredEntityRequestResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      tags:
      - MonitoredEntityService
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/monitoringCreateMonitoredEntityRequest'
        required: true
  /api/v1/monitoring/monitored_entity/deleteMonitoredEntity:
    delete:
      operationId: MonitoredEntityService_deleteMonitoredEntity
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/monitoringDeleteMonitoredEntityRequestResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      tags:
      - MonitoredEntityService
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/monitoringDeleteMonitoredEntityRequest'
        required: true
  /api/v1/monitoring/monitored_entity/findMonitoredEntity:
    post:
      operationId: MonitoredEntityService_findMonitoredEntity
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/monitoringFindMonitoredEntityRequestResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      tags:
      - MonitoredEntityService
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/monitoringFindMonitoredEntityRequest'
        required: true
  /api/v1/monitoring/monitored_entity/updateMonitoredEntity:
    patch:
      operationId: MonitoredEntityService_updateMonitoredEntity
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/monitoringUpdateMonitoredEntityRequestResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      tags:
      - MonitoredEntityService
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/monitoringUpdateMonitoredEntityRequest'
        required: true
components:
  schemas:
    monitoringCreateMonitoredEntityRequestResponse:
      type: object
      properties:
        monitored_entity:
          $ref: '#/components/schemas/monitoringMonitoredEntity'
    CollaboratorTypeEnumCollaboratorType:
      type: string
      enum:
      - READ_ONLY
      - READ_WRITE
      default: READ_ONLY
    commonGroupId:
      type: object
      properties:
        org_id:
          type: string
        group_id:
          type: string
    runtimeError:
      type: object
      properties:
        error:
          type: string
        code:
          type: integer
          format: int32
        message:
          type: string
        details:
          type: array
          items:
            $ref: '#/components/schemas/protobufAny'
    protobufAny:
      type: object
      properties:
        type_url:
          type: string
        value:
          type: string
          format: byte
    uacResourceVisibility:
      type: string
      enum:
      - UNKNOWN
      - ORG_DEFAULT
      - ORG_CUSTOM
      - PRIVATE
      - WORKSPACE_DEFAULT
      default: UNKNOWN
    monitoringDeleteMonitoredEntityRequest:
      type: object
      properties:
        id:
          type: string
          format: uint64
    monitoringFindMonitoredEntityRequestResponse:
      type: object
      properties:
        monitored_entities:
          type: array
          items:
            $ref: '#/components/schemas/monitoringMonitoredEntity'
        total_records:
          type: integer
          format: int32
    uacCollaboratorPermissions:
      type: object
      properties:
        collaborator_type:
          $ref: '#/components/schemas/CollaboratorTypeEnumCollaboratorType'
        can_deploy:
          $ref: '#/components/schemas/TernaryEnumTernary'
        can_predict:
          $ref: '#/components/schemas/TernaryEnumTernary'
    TernaryEnumTernary:
      type: string
      enum:
      - UNKNOWN
      - 'TRUE'
      - 'FALSE'
      default: UNKNOWN
    monitoringCreateMonitoredEntityRequest:
      type: object
      properties:
        name:
          type: string
        workspace_id:
          type: string
          format: uint64
        workspace_name:
          type: string
        attributes:
          type: object
          additionalProperties:
            type: string
        resource_visibility:
          $ref: '#/components/schemas/uacResourceVisibility'
        custom_permission:
          $ref: '#/components/schemas/uacCollaboratorPermissions'
          title: 'The next field only makes sense when visibility == ORG_CUSTOM

            They will be empty otherwise'
        endpoint_id:
          type: string
          format: uint64
          description: Optional.  If the data originates from a Verta endpoint, set this to the endpoint id.
        origin:
          type: string
          title: a tag that says where the data for this monitored entity comes from. eg. "endpoint" or "batch"
    monitoringMonitoredEntity:
      type: object
      properties:
        id:
          type: string
          format: uint64
        name:
          type: string
        workspace_id:
          type: string
          format: uint64
        created_at_timestamp_millis:
          type: string
          format: uint64
        updated_at_timestamp_millis:
          type: string
          format: uint64
        attributes:
          type: object
          additionalProperties:
            type: string
        owner:
          type: string
          title: owner's verta_id
        owner_id:
          type: string
          format: uint64
        group_owner_id:
          $ref: '#/components/schemas/commonGroupId'
        resource_visibility:
          $ref: '#/components/schemas/uacResourceVisibility'
        custom_permission:
          $ref: '#/components/schemas/uacCollaboratorPermissions'
          title: 'The next field only makes sense when visibility == ORG_CUSTOM

            They will be empty otherwise'
        version_number:
          type: string
          format: uint64
        endpoint_id:
          type: string
          format: uint64
        datasource_name:
          type: string
        origin:
          type: string
          title: a tag that says where the data for this monitored entity comes from. eg. "endpoint" or "batch"
    monitoringUpdateMonitoredEntityRequestResponse:
      type: object
      properties:
        monitored_entity:
          $ref: '#/components/schemas/monitoringMonitoredEntity'
    monitoringUpdateMonitoredEntityRequest:
      type: object
      properties:
        id:
          type: string
          format: uint64
        name:
          type: string
        attributes:
          type: object
          additionalProperties:
            type: string
        resource_visibility:
          $ref: '#/components/schemas/uacResourceVisibility'
        custom_permission:
          $ref: '#/components/schemas/uacCollaboratorPermissions'
          title: 'The next field only makes sense when visibility == ORG_CUSTOM

            They will be empty otherwise'
    monitoringDeleteMonitoredEntityRequestResponse:
      type: object
    monitoringFindMonitoredEntityRequest:
      type: object
      properties:
        ids:
          type: array
          items:
            type: string
            format: uint64
        names:
          type: array
          items:
            type: string
        fuzzy_names:
          type: array
          items:
            type: string
          title: Add names to find with a fuzzy (non-exact) search
        endpoint_ids:
          type: array
          items:
            type: string
            format: uint64
        model_version_ids:
          type: array
          items:
            type: string
        workspace_id:
          type: string
          format: uint64
        workspace_name:
          type: string
        page_number:
          type: integer
          format: int32
          title: Pagination
        page_limit:
          type: integer
          format: int32