API Docs
RBM CRM REST API
גישה לנתונים בזמן אמת עם API מאובטח (פלאן עסקי ומעלה)
GET
/api/v1/leadsקבלת רשימת לידים
Request
GET /api/v1/leads?org_id=&status=new&limit=50&offset=0
Authorization: Bearer {API_KEY}Response 200
{
"leads": [
{
"id": 1,
"name": "ישראל ישראלי",
"phone": "050-0000000",
"source": "website",
"status": "new",
"created_at": "2025-01-01T10:00:00Z"
}
],
"total": 142
}POST
/api/v1/leadsיצירת ליד חדש
Request
POST /api/v1/leads
Authorization: Bearer {API_KEY}
Content-Type: application/json
{
"name": "ישראל ישראלי",
"phone": "050-0000000",
"source": "landing_page",
"notes": "מעוניין בשיפוץ מטבח"
}Response 200
{
"lead": {
"id": 143,
"name": "ישראל ישראלי",
"phone": "050-0000000",
"source": "landing_page",
"status": "new",
"created_at": "2025-06-01T12:00:00Z"
}
}GET
/api/v1/projectsקבלת רשימת פרויקטים
Request
GET /api/v1/projects
Authorization: Bearer {API_KEY}Response 200
{
"projects": [
{
"id": 7,
"name": "שיפוץ דירה ברחוב הרצל",
"status": "active",
"budget": 85000,
"start_date": "2025-02-01",
"end_date": "2025-05-01",
"client_name": "משפחת לוי"
}
]
}GET
/api/v1/projects/:id/tasksקבלת משימות של פרויקט
Request
GET /api/v1/projects/7/tasks
Authorization: Bearer {API_KEY}Response 200
{
"tasks": [
{
"id": 21,
"name": "הריסת מחיצות",
"status": "done",
"end_date": "2025-02-10"
},
{
"id": 22,
"name": "ריצוף סלון",
"status": "in_progress",
"end_date": "2025-03-15"
}
]
}מוכן לגשת ל-API?
API גישה זמינה בפלאן עסקי ומעלה. קבל API Key ותתחיל לבנות אינטגרציות.
שדרג לפלאן עסקי