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.stackmod.info - 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.stackmod.info/
Production environment
https://feapi.novamed.care/
Request
Request a refill for an existing medication order that has been shipped or delivered.
Eligibility Requirements:
- Medication must have been shipped or delivered
- Refills must be authorized on the original prescription
- No pending refill request already exists
The refill request will create a new prescription and medication order automatically.
Security
ApiKeyAuth
UUID of the medication request to refill
Example: "880e8400-e29b-41d4-a716-446655440003"
- Mock serverhttps://docs.novamed.care/_mock/openapi-partner/api/external/refill-request
- Development environmenthttps://novamed-feapidev.stackmod.info/api/external/refill-request
- Production environmenthttps://feapi.novamed.care/api/external/refill-request
- 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/refill-request \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"medication_request_id": "880e8400-e29b-41d4-a716-446655440003"
}'Response
application/json
{ "success": true, "message": "Refill request was created successfully.", "data": { "refill_request_id": "990e8400-e29b-41d4-a716-446655440004", "medication_order_id": "aa0e8400-e29b-41d4-a716-446655440005" } }