MV sistemas News API

The News API from MV sistemas — 1 operation(s) for news.

Operations 1

POST /news/v2/send Envia uma notificação ao paciente

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-news-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-news-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Global Health News 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: News
paths:
  /news/v2/send:
    post:
      tags:
      - News
      summary: Envia uma notificação ao paciente
      description: Endpoint responsável por enviar mensagens internas aos usuários do aplicativo de saúde, permitindo a transmissão de avisos, lembretes ou outras comunicações relevantes.
      security:
      - api_key: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/NotificationPayload'
              example:
              - personalHealthLogin: mv@mv.com.br
                message: Caro paciente, boa segunda-feira!
                title: Mensagem
                clientKey: mvsistemas
                status: CREATED
                type: INTERNAL
                avatar: ws://api.exemplo.com/chat
      responses:
        '200':
          description: Mensagem enviada com sucesso.
        '400':
          description: Requisição inválida. Verifique os dados enviados.
        '500':
          description: Erro interno do servidor.
components:
  schemas:
    NotificationPayload:
      type: object
      properties:
        personalHealthLogin:
          type: string
          format: email
          example: mv@mv.com.br
          description: E-mail do paciente que receberá a mensagem.
        message:
          type: string
          example: Caro paciente, boa segunda-feira!
          description: Conteúdo da mensagem a ser enviada.
        title:
          type: string
          example: Mensagem
          description: Título da mensagem exibido na notificação.
        clientKey:
          type: string
          example: mvsistemas
          description: Identificador do cliente emissor da mensagem.
        status:
          type: string
          enum:
          - CREATED
          - SENT
          - FAILED
          example: CREATED
          description: Status inicial da mensagem.
        type:
          type: string
          enum:
          - INTERNAL
          - LINK
          example: INTERNAL
          description: 'Define o tipo da mensagem:

            - INTERNAL: mensagem interna, visível um texto simples dentro do app.

            - LINK: mensagem com link externo.'
        url:
          type: string
          example: URL do Link enviado
          description: Para mensagens do tipo LINK, enviar nesse campo o link que o paciente deve abrir.
        avatar:
          type: string
          example: ws://api.exemplo.com/chat
      required:
      - personalHealthLogin
      - message
      - title
      - clientKey
      - status
      - type
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key