Deals API
API endpoints for deal management, deal notes, timeline tracking, and deal collaboration. Base Path:/api (deal endpoints in main routes)Code Reference:
app/api/routes.py (deal endpoints), app/services/deal_service.py
Deal Management
List Deals
List all deals with filtering and pagination. Query Parameters:status: Filter by deal statusdeal_type: Filter by deal typesearch: Search querylimit: Items per page (default: 50)offset: Pagination offset
app/api/routes.py (deal endpoints)
Get Deal Details
Get detailed information about a specific deal. Response: Complete deal information including notes, documents, and timelineCreate Deal Note
Add a note to a deal. Request Body:Get Deal Timeline
Get timeline of events for a deal. Response: Chronological list of deal eventsAdditional Resources
Last Updated: 2026-01-14
Code Reference:
app/api/routes.py, app/services/deal_service.py