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
Register a webhook URL to receive real-time event notifications.
Once registered, you will receive webhook events for:
- Shipment creation and updates
- Prescription status changes
- Medication order status updates
Webhooks are sent via HTTPS POST requests with an x-api-key header for authentication.
Security
ApiKeyAuth
UUID of the clinic associated with this webhook
Example: "550e8400-e29b-41d4-a716-446655440000"
- Mock serverhttps://docs.novamed.care/_mock/openapi-partner/api/external/webhook
- Development environmenthttps://novamed-feapidev.stackmod.info/api/external/webhook
- Production environmenthttps://feapi.novamed.care/api/external/webhook
- 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/webhook \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"clinic_id": "550e8400-e29b-41d4-a716-446655440000",
"webhook_url": "https://partner.example.com/webhooks/novamed"
}'Response
application/json
{ "success": true, "data": { "webhook_id": "bb0e8400-e29b-41d4-a716-446655440006" }, "message": "Webhook created successfully" }
- Mock serverhttps://docs.novamed.care/_mock/openapi-partner/api/external/webhook
- Development environmenthttps://novamed-feapidev.stackmod.info/api/external/webhook
- Production environmenthttps://feapi.novamed.care/api/external/webhook
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.novamed.care/_mock/openapi-partner/api/external/webhook?id=bb0e8400-e29b-41d4-a716-446655440006' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "success": true, "message": "Webhook deleted successfully" }