Integrations
Communications included. Payments ready.
Communications (Included)
IncludedSMS and email notifications are platform-managed and included in your subscription. No setup required.
SMS Notifications
IncludedAutomated SMS updates to families and staff. Powered by Twilio.
- Case status updates
- Appointment reminders
- Document ready alerts
- Custom templates
Email Communications
IncludedTransactional emails with your facility branding. Powered by Resend.
- Branded email templates
- Invoice notifications
- Status updates
- Document delivery
Payment Processing
AvailableAccept payments from families using African and global payment providers.
Paystack
AvailableAccept payments via cards, bank transfers, and mobile money across Africa.
- Card payments
- Bank transfers
- Mobile money
- Automated reconciliation
Flutterwave
AvailablePan-African payment processing with multiple payment methods.
- 30+ African countries
- Multiple currencies
- Mobile money
- Card payments
Hubtel
AvailableGhana-focused payment solution with mobile money integration.
- MTN Mobile Money
- Vodafone Cash
- AirtelTigo Money
- Bank payments
Roadmap
Coming Soon
We're building integrations with popular business tools. Let us know what you need most.
Accounting & Finance
Sync invoices and financial data with your accounting software.
QuickBooks
Invoice and payment sync
Xero
Two-way accounting sync
Sage
Enterprise accounting
Documents & Signatures
Digital document management and e-signatures.
DocuSign
Electronic signatures
Adobe Sign
Enterprise e-signatures
Calendar & Scheduling
Sync appointments with calendar applications.
Google Calendar
Two-way calendar sync
Microsoft 365
Outlook integration
Developer API
Build custom integrations
Need something specific? Our comprehensive REST API allows you to build custom integrations tailored to your facility's unique requirements.
- RESTful API with comprehensive documentation
- Webhook support for real-time updates
- OAuth 2.0 authentication
- Rate limiting and usage monitoring
- Sandbox environment for testing
- Dedicated developer support

From the floor to your systems
Every scan, storage move and release your team records is available through one clear integration surface instead of fragmented handoffs.
// Send SMS notification via API
const response = await fetch(
'https://api.sankorra.com/v1/messages/sms',
{
method: 'POST',
headers: {
'Authorization': 'Bearer your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
facility_id: 'fac_123',
to: '+233201234567',
template_key: 'case_status_sms',
data: {
deceased_name: 'John Smith',
status: 'Ready for viewing'
}
})
}
);
const result = await response.json();
console.log('Message ID:', result.messageId);