Manage practitioners (doctors, veterinarians) in the system
NovaMed Partner API (1.0.0)
The NovaMed Partner API enables healthcare partners to integrate with NovaMed for patient care management, prescription fulfillment, and order tracking.
Authentication: All requests require an x-api-key header with your API key.
Base URLs:
- Development:
https://novamed-feapidev.nimbushealthcaretest.com - Production:
https://feapi.novamed.care
For detailed guides, see the Getting Started documentation.
Download OpenAPI description
Overview
NovaMed API Support
License
Languages
Servers
Mock server
https://docs.novamed.care/_mock/openapi-partner
Development environment
https://novamed-feapidev.nimbushealthcaretest.com
Production environment
https://feapi.novamed.care
Request
Creates a new practitioner (doctor or veterinarian) in the system. This endpoint is used to onboard practitioners by collecting their personal, professional, and contact information.
Notes:
- All required fields must be provided and valid
assigned_clinicmust reference an existing clinic UUID- Validation errors will return descriptive messages for each field
Security
ApiKeyAuth
Practitioner's first name (minimum 2 characters)
Example: "John"
Practitioner's last name (minimum 2 characters)
Example: "Doe"
ID of the assigned clinic
Example: "550e8400-e29b-41d4-a716-446655440001"
- Mock serverhttps://docs.novamed.care/_mock/openapi-partner/api/external/practitioner
- Development environmenthttps://novamed-feapidev.nimbushealthcaretest.com/api/external/practitioner
- Production environmenthttps://feapi.novamed.care/api/external/practitioner
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.novamed.care/_mock/openapi-partner/api/external/practitioner \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"npi": "1234567890",
"is_veterinarian": true,
"assigned_clinic": "550e8400-e29b-41d4-a716-446655440001",
"phone": "1234567890",
"address_line_1": "123 Main St",
"address_line_2": "Apt 1",
"city": "San Antonio",
"state_code": "TX",
"zip_code": "78201"
}'Response
application/json
{ "success": true, "data": { "practitioner_id": "660e8400-e29b-41d4-a716-446655440001" }, "message": "Practitioner created successfully" }