MV sistemas User API

The User API from MV sistemas — 1 operation(s) for user.

Operations 1

POST /personal-health/api/v1/user/create Criar novo usuário

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-user-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-user-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Users - Global Health User API
  description: Documentação OpenAPI para o serviços de criação de usuário
  version: 1.0.0
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: User
paths:
  /personal-health/api/v1/user/create:
    post:
      summary: Criar novo usuário
      description: Cria um novo usuário.
      tags:
      - User
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserCreationDTO'
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '500':
          description: Failure
components:
  schemas:
    DocumentTypeDTO:
      type: object
      description: Tipo do documento
      properties:
        description:
          type: string
          example: CPF
    UserCreationDTO:
      type: object
      description: DTO utilizado para criar um novo usuário
      required:
      - login
      - password
      - firstName
      - phoneMobile
      - gender
      - email
      - birthDate
      - clientKey
      - product
      properties:
        login:
          type: string
          description: Login do usuário em formato de e-mail, único
          example: admin@admin.com
        password:
          type: string
          description: Senha do usuário, entre 5 e 60 caracteres
          example: 123@admin
          minLength: 5
          maxLength: 60
        firstName:
          type: string
          description: Primeiro nome do usuário, único
          example: Adminstrato
        activated:
          type: boolean
          description: 'Se usuário será já ativado (caso clientkey tenha permissão) (default: false)'
          dafault: false
        lastName:
          type: string
          description: Sobrenome do usuário
        phoneMobile:
          type: string
          description: Telefone celular no formato ++55 81 DDDD-DDDD
          example: '5581994383222'
        documentUserDTO:
          $ref: '#/components/schemas/DocumentUserDTO'
        gender:
          type: string
          description: 'Gênero do usuário: M (Masculino) ou F (Feminino)'
          enum:
          - M
          - F
          example: M
        email:
          type: string
          format: email
          description: E-mail do usuário, único
          example: admin@admin.com
        birthDate:
          type: string
          format: date
          description: Data de nascimento no formato YYYY-MM-DD
          example: '1980-10-01'
        clientKey:
          type: string
          description: Identificação do cliente
          example: MV
        product:
          type: string
          description: Identificação do produto
          example: CHECKIN
        picture:
          type: string
          format: uri
          description: 'URL da foto do usuário (ex.: URL S3)'
          example: https://s3.amazonaws.com/checkin-bucket/users-photos/d812258dd0b94349a4f64fdc2ff65117.png
        subscriptionId:
          type: integer
          format: int64
          description: ID da assinatura
        socialName:
          type: string
          description: Nome social do usuário
          example: João
    DocumentUserDTO:
      type: object
      description: DTO do documento do usuário
      properties:
        documentTypeDTO:
          $ref: '#/components/schemas/DocumentTypeDTO'
        number:
          type: string
          description: 'Número do documento (ex.: CPF)'
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key