Skip to content

Nextvisit API (1.0.0)

API for the Nextvisit Clinical Documentation platform for developers

Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developers.nextvisit.app/_mock/openapi
Production API
https://nextvisit.app/api
Beta API
https://ea.nextvisit.app/api

Tokens

User token management endpoints for secure access to the Nextvisit platform. Includes login, logout, and token management operations.

Operations

Users

User account management including profile updates, permission settings, role assignments, and practice affiliations.

Operations

Request

Retrieves the currently authenticated user's details

Security
bearerAuth
curl -i -X GET \
  https://developers.nextvisit.app/_mock/openapi/user \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Successful operation

Bodyapplication/json
idinteger(int64)required

Unique identifier for the user

Example: 12345
namestringrequired

Full name of the user

Example: "Dr. Sarah Johnson"
emailstring(email)required

Email address of the user

Example: "sarah.johnson@nextvisit.ai"
created_atstring(date-time)required

Timestamp when the user was created

Example: "2023-03-15T09:12:34Z"
updated_atstring(date-time)required

Timestamp when the user was last updated

Example: "2023-05-22T14:07:53Z"
Response
application/json
{ "id": 1, "name": "John Doe", "email": "john.doe@example.com", "created_at": "2023-01-15T08:30:00Z", "updated_at": "2023-01-15T08:30:00Z" }

Progress Notes

Clinical progress note management including creating, updating, retrieving, and signing notes with associated transcriptions and analyses.

Operations

Billing

Billing and subscription management including plans, usage tracking, and cost estimates.

Operations

Transcription

Audio transcription services including file upload transcription and temporary API tokens for client-side transcription.

Operations

Patients

Patient management including creating, updating, retrieving, and searching patient records within your team.

Operations