Argo CD NotificationService API

The NotificationService API from Argo CD — 3 operation(s) for notificationservice.

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/argocd-notificationservice-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

argocd-notificationservice-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  description: Description of all APIs
  title: Consolidate Services AccountService NotificationService API
  version: version not set
consumes:
- application/json
produces:
- application/json
tags:
- name: NotificationService
paths:
  /api/v1/notifications/services:
    get:
      tags:
      - NotificationService
      summary: List returns list of services
      operationId: NotificationService_ListServices
      responses:
        '200':
          description: A successful response.
          schema:
            $ref: '#/definitions/notificationServiceList'
        default:
          description: An unexpected error response.
          schema:
            $ref: '#/definitions/runtimeError'
  /api/v1/notifications/templates:
    get:
      tags:
      - NotificationService
      summary: List returns list of templates
      operationId: NotificationService_ListTemplates
      responses:
        '200':
          description: A successful response.
          schema:
            $ref: '#/definitions/notificationTemplateList'
        default:
          description: An unexpected error response.
          schema:
            $ref: '#/definitions/runtimeError'
  /api/v1/notifications/triggers:
    get:
      tags:
      - NotificationService
      summary: List returns list of triggers
      operationId: NotificationService_ListTriggers
      responses:
        '200':
          description: A successful response.
          schema:
            $ref: '#/definitions/notificationTriggerList'
        default:
          description: An unexpected error response.
          schema:
            $ref: '#/definitions/runtimeError'
definitions:
  protobufAny:
    type: object
    properties:
      type_url:
        type: string
      value:
        type: string
        format: byte
  runtimeError:
    type: object
    properties:
      code:
        type: integer
        format: int32
      details:
        type: array
        items:
          $ref: '#/definitions/protobufAny'
      error:
        type: string
      message:
        type: string
  notificationTemplateList:
    type: object
    properties:
      items:
        type: array
        items:
          $ref: '#/definitions/notificationTemplate'
  notificationTriggerList:
    type: object
    properties:
      items:
        type: array
        items:
          $ref: '#/definitions/notificationTrigger'
  notificationTrigger:
    type: object
    properties:
      name:
        type: string
  notificationTemplate:
    type: object
    properties:
      name:
        type: string
  notificationService:
    type: object
    properties:
      name:
        type: string
  notificationServiceList:
    type: object
    properties:
      items:
        type: array
        items:
          $ref: '#/definitions/notificationService'