MV sistemas Notification API

The Notification API from MV sistemas — 2 operation(s) for notification.

Operations 2

POST /notification/push Envia uma notificação push
POST /notification/email/send Envia uma notificação email

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/mv-sistemas-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

mv-sistemas-notification-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: News - Global Health Notification API
  version: 1.0.0
  description: Esta API permite o envio de mensagens de notificação para os usuários do aplicativo Global Health, possibilitando a comunicação direta e automatizada com os pacientes ou profissionais de saúde
servers:
- url: https://api.globalhealth.mv/hml
  description: Ambiente de HOMOLOGAÇÃO
- url: https://api.globalhealth.mv/prod
  description: Ambiente de PRODUÇÃO
tags:
- name: Notification
paths:
  /notification/push:
    post:
      tags:
      - Notification
      summary: Envia uma notificação push
      description: Endpoint responsável por enviar notificação push com mensagem, título e destinatário (e-mail).
      security:
      - api_key: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationPushPayload'
            example:
              message: Exemplo de Mensagem
              title: Exemplo de Titulo
              to: email@email.com
      responses:
        '200':
          description: Notificação enviada com sucesso.
        '400':
          description: Requisição inválida. Verifique os dados enviados.
        '500':
          description: Erro interno do servidor.
  /notification/email/send:
    post:
      tags:
      - Notification
      summary: Envia uma notificação email
      description: Endpoint responsável por enviar notificação por email.
      security:
      - api_key: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationEmailPayload'
            example:
              modelKey: CHAVE_DO_MODELO
              clientKey: chave-do-cliente
              productKey: CHAVE_DO_PRODUTO
              tags:
                NOME_DA_TAG: VALOR DA TAG
              to: email@email.com
      responses:
        '200':
          description: Notificação enviada com sucesso.
        '400':
          description: Requisição inválida. Verifique os dados enviados.
        '500':
          description: Erro interno do servidor.
components:
  schemas:
    NotificationEmailPayload:
      type: object
      properties:
        modelKey:
          type: string
          example: CHAVE_DO_MODELO
          description: Chave do modelo.
        clientKey:
          type: string
          example: chave-do-cliente
          description: Chave do cliente.
        productKey:
          type: string
          example: CHAVE_DO_PRODUTO
          description: Chave do produto.
        tags:
          type: object
          description: Tags chave/valor para o modelo
        to:
          type: string
          format: email
          example: email@email.com
          description: E-mail do destinatário que receberá a notificação.
      required:
      - modelKey
      - clientKey
      - productKey
      - to
    NotificationPushPayload:
      type: object
      properties:
        message:
          type: string
          example: Exemplo de Mensagem
          description: Conteúdo da mensagem a ser enviada na notificação.
        title:
          type: string
          example: Exemplo de Titulo
          description: Título da notificação.
        to:
          type: string
          format: email
          example: email@email.com
          description: E-mail do destinatário que receberá a notificação.
      required:
      - message
      - title
      - to
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key