Built for Developers
REST API, webhooks, and developer-friendly architecture. Extend VUMY or integrate it into your existing systems.
REST API
Full REST API access to all VUMY modules. Manage candidates, jobs, bookings, contracts, and more programmatically. JSON responses, Bearer token auth, comprehensive error handling.
GET /api/v1/applicants?status=screening
Authorization: Bearer your_api_token
{
"data": [...],
"meta": { "total": 42, "page": 1 }
} Webhooks
Subscribe to events across all modules. Get notified when candidates apply, interviews are scheduled, contracts are signed, or payments are received.
POST https://your-app.com/webhooks/vumy
{
"event": "applicant.stage_changed",
"data": {
"applicant_id": "app_123",
"from_stage": "screening",
"to_stage": "interview"
}
} Architecture
→
PostgreSQL + RLS
Multi-tenant isolation at database level
→
Laravel + Livewire
Server-side rendering with real-time updates
→
Reverb WebSockets
Real-time events and Symphony chat streaming
→
Horizon Queues
Background job processing for heavy operations