Retrieve all managers for the authenticated admin.
/api/integrations/crm/managers
Step-by-step guide to integrate manager data into your CRM or website
Contact us to get your API key and secret key for accessing manager data
Download our ready-to-use UI components from the UI Components page - just copy and paste!
Add the API integration code to your website or CRM system using the examples in the right sidebar
Your website will now show live manager data from our system automatically
const apiKey = 'your_api_key_here'; const secretKey = 'your_secret_key_here'; async function getManagers() { const response = await fetch('/api/integrations/crm/managers?limit=20&status=active', { method: 'GET', headers: { 'X-API-Key': apiKey, 'X-Secret-Key': secretKey, 'Content-Type': 'application/json' } }); if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); } const data = await response.json(); console.log(data.data.managers); } getManagers().catch(console.error);
{ "success": true, "data": { "managers": [ { "id": "123", "fullname": "John Manager", "email": "john@example.com", "phone": "+91 9876543210", "region": "North India", "subscription_plan": "premium", "payment_status": "active", "merchandiser_count": 8, "createdat": "2024-01-15T10:30:00Z", "updatedat": "2024-01-20T14:45:00Z" } ], "pagination": { "total": 15, "limit": 20, "offset": 0, "has_more": false } } }