Graphiant Notification API

The Notification API from Graphiant — 4 operation(s) for notification.

Operations 4

POST /v2/notification/create
POST /v2/notification/delete
POST /v2/notification/enabledisable
POST /v2/notification/update

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/graphiant-notification-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

graphiant-notification-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Graphiant Notification API
  version: 1.0.0
  description: Graphiant API documentation.
servers:
- url: https://api.graphiant.com
security:
- jwtAuth: []
tags:
- name: Notification
paths:
  /v2/notification/create:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v2NotificationCreatePostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2NotificationCreatePostResponse'
      tags:
      - Notification
  /v2/notification/delete:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v2NotificationDeletePostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2NotificationDeletePostResponse'
      tags:
      - Notification
  /v2/notification/enabledisable:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v2NotificationEnabledisablePostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2NotificationEnabledisablePostResponse'
      tags:
      - Notification
  /v2/notification/update:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v2NotificationUpdatePostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2NotificationUpdatePostResponse'
      tags:
      - Notification
components:
  schemas:
    v2NotificationCreatePostResponse:
      type: object
      properties: {}
      additionalProperties: false
    v2NotificationEnabledisablePostResponse:
      type: object
      properties: {}
      additionalProperties: false
    alertserviceNotificationBody:
      type: object
      properties:
        description:
          type: string
          example: example string
          description: Description of notification
        duration:
          type: string
          example: ENUM_VALUE
          description: Time interval for notification (required)
        enabled:
          type: boolean
          example: true
          description: Enable or disable notification (required)
        frequency:
          type: integer
          format: int64
          example: 12345678910
          minimum: 0
          description: Frequency of notifying a continuing alert (required)
        messageBody:
          type: string
          example: example string
          description: Message body to prepend to actual message
        notificationName:
          type: string
          example: example string
          description: Name of the notification record (required)
        opsgenieList:
          type: array
          items:
            type: string
            example: example string
            description: List of opsgenie recipients
        opsrampList:
          type: array
          items:
            type: string
            example: example string
            description: List of opsramp recipients
        pagerdutyList:
          type: array
          items:
            type: string
            example: example string
            description: List of pagerduty recipients
        recipientList:
          type: array
          items:
            type: string
            example: example string
            description: Non-empty list of email recipients (required)
        teamsList:
          type: array
          items:
            type: string
            example: example string
            description: List of teams recipients
        webhookUrlList:
          type: array
          items:
            type: string
            example: example string
            description: List of webhook_url recipients
      additionalProperties: false
    v2NotificationUpdatePostRequest:
      type: object
      properties:
        notificationBody:
          $ref: '#/components/schemas/alertserviceNotificationBody'
        notificationIdList:
          type: array
          items:
            type: string
            example: example string
            description: List of notification ids to update (required)
      additionalProperties: false
      required:
      - notificationBody
      - notificationIdList
    v2NotificationDeletePostResponse:
      type: object
      properties: {}
      additionalProperties: false
    v2NotificationCreatePostRequest:
      type: object
      properties:
        notificationBody:
          $ref: '#/components/schemas/alertserviceNotificationBody'
        ruleIdList:
          type: array
          items:
            type: string
            example: example string
            description: List of rule ids (required)
      additionalProperties: false
      required:
      - notificationBody
      - ruleIdList
    v2NotificationDeletePostRequest:
      type: object
      properties:
        notificationIdList:
          type: array
          items:
            type: string
            example: example string
            description: List of notification ids to delete notification records (required)
      additionalProperties: false
      required:
      - notificationIdList
    v2NotificationEnabledisablePostRequest:
      type: object
      properties:
        enable:
          type: boolean
          example: true
          description: Enable or disable. True means enable (required)
        notificationIdList:
          type: array
          items:
            type: string
            example: example string
            description: List of notification ids to enable disable (required)
      additionalProperties: false
      required:
      - enable
      - notificationIdList
    v2NotificationUpdatePostResponse:
      type: object
      properties: {}
      additionalProperties: false
  securitySchemes:
    jwtAuth:
      type: apiKey
      in: header
      name: authorization
      description: Use `Bearer <token>`