Argo CD NotificationService API

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

Operations 3

GET /api/v1/notifications/services List returns list of services #
GET /api/v1/notifications/templates List returns list of templates #
GET /api/v1/notifications/triggers List returns list of triggers #

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 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

argocd-notificationservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Description of all APIs
  title: Consolidate Services AccountService Notification Service API
  version: version not set
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.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/notificationServiceList'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/notifications/templates:
    get:
      tags:
      - NotificationService
      summary: List returns list of templates
      operationId: NotificationService_ListTemplates
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/notificationTemplateList'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/notifications/triggers:
    get:
      tags:
      - NotificationService
      summary: List returns list of triggers
      operationId: NotificationService_ListTriggers
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/notificationTriggerList'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
components:
  schemas:
    notificationServiceList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/notificationService'
    notificationTemplateList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/notificationTemplate'
    runtimeError:
      type: object
      properties:
        code:
          type: integer
          format: int32
        details:
          type: array
          items:
            $ref: '#/components/schemas/protobufAny'
        error:
          type: string
        message:
          type: string
    notificationTemplate:
      type: object
      properties:
        name:
          type: string
    notificationService:
      type: object
      properties:
        name:
          type: string
    notificationTrigger:
      type: object
      properties:
        name:
          type: string
    notificationTriggerList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/notificationTrigger'
    protobufAny:
      type: object
      properties:
        type_url:
          type: string
        value:
          type: string
          format: byte