A comprehensive Customer Relationship Management software built on Django with extensive customization capabilities
REST endpoints, AJAX interfaces, and integration patterns for connecting external systems.
# Entity CRUD operations via HTTP
GET /creme_core/entity/ # List entities
POST /creme_core/entity/ # Create entity
GET /creme_core/entity/{id}/ # Get entity details
PUT /creme_core/entity/{id}/ # Update entity
DELETE /creme_core/entity/{id}/ # Delete entity# AJAX endpoints for dynamic UI updates
/creme_core/ajax/entity/search/ # Entity search
/creme_core/ajax/relation/create/ # Create relationships
/creme_core/ajax/brick/reload/ # Reload dashboard bricks# Integration with external systems
def sync_external_contacts(api_client):
"""
Synchronize contacts with external CRM system.
Parameters:
- api_client: External API client instance
"""Install with Tessl CLI
npx tessl i tessl/pypi-creme-crmdocs