Mediloop
CONNECTOR SDK

Next steps

You're all set to start building! Follow these next steps to integrate with Mediloop using the Connector SDK.

Need help at any point? Our documentation and support team are here for you. Contact Support →

Your integration journey

1. Learn
Explore the docs and examples
2. Build
Implement your integration
3. Test
Test in sandbox environment
4. Go live
Deploy and monitor in production
5. Optimize
Monitor, improve and scale

1. Explore examples

Browse sample connector implementations for common use cases.

Patient data synchronization
Appointment scheduling
Lab results integration
Device data ingestion
Marketplace order sync
View all examples →

2. Try the sandbox

Test your integration in our secure sandbox environment with realistic data.

Sandbox environment
https://sandbox.api.mediloop.com

Use your test API key to make requests and validate responses.
Go to sandbox →

3. Go live checklist

Integration tested in sandbox
Error handling implemented
Rate limiting configured
Security requirements met
Go-live review completed
View detailed checklist →

4. Monitor & maintain

Monitor health
Track uptime, latency and error rates
Set alerts
Get notified about issues and anomalies
Stay updated
Follow changelog and version updates
Improve
Continuously optimize your integration

Quick SDK usage recap (Node.js)

typescriptCopy
import { MediloopClient } from '@mediloop/connector-sdk';
const client = new MediloopClient({
  baseUrl: process.env.MEDILOOP_BASE_URL,
  apiKey: process.env.MEDILOOP_API_KEY,
});
const patient = await client.patients.get('pat_123');