MV sistemas Conta API

The Conta API from MV sistemas — 1 operation(s) for conta.

Operations 1

POST /v1/subscriptions Criar conta Clinic Connect

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-conta-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-conta-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Clinic Connect Conta API
  version: 1.0.0
  description: Esta API permite a integração com o sistema Clinic por meio do Clinic Connect, facilitando a comunicação e o compartilhamento de dados entre plataformas.
servers:
- url: https://api.globalhealth.mv/clinic-connect/api/
  description: Ambiente de PRODUÇÃO
- url: https://api.globalhealth.mv/hml/clinic-connect/api/
  description: Ambiente de HOMOLOGAÇÃO
- url: https://api.globalhealth.mv/qa/clinic-connect/api/
  description: Ambiente de QA
security:
- x-api-key: []
tags:
- name: Conta
paths:
  /v1/subscriptions:
    post:
      tags:
      - Conta
      summary: Criar conta Clinic Connect
      description: Endpoint responsável pela criação de contas no Clinic Connect, permitindo o registro de novas integrações com o sistema Clinic.
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnectSubscriptionDTO'
      responses:
        '201':
          description: Conta cadastrada com sucesso.
        '400':
          description: Requisição inválida. Verifique os dados enviados.
        '500':
          description: Erro interno do servidor.
components:
  schemas:
    TermCboConnectDTO:
      type: object
      properties:
        termCode:
          type: string
    ConnectSubscriptionDTO:
      type: object
      properties:
        externalId:
          type: integer
          format: int32
        identificationNumber:
          type: string
        accessCode:
          type: string
        clientKey:
          type: string
        email:
          type: string
          format: email
        login:
          type: string
        name:
          type: string
        password:
          type: string
          format: password
        phone:
          type: string
        termCbo:
          $ref: '#/components/schemas/TermCboConnectDTO'
        accreditation:
          $ref: '#/components/schemas/EmployeeAccreditationDTO'
    EmployeeAccreditationDTO:
      type: object
      properties:
        accreditationType:
          type: string
          example: CRM
        accreditationState:
          type: string
          example: PE
        accreditationNumber:
          type: string
          example: '123456'
  securitySchemes:
    x-api-key:
      type: apiKey
      name: x-api-key
      in: header