Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.

Prospect Notes

MethodPathDescription
GET/v1/prospects/{id}/notesList notes, newest first (paged)
POST/v1/prospects/{id}/notesAdd a note
GET/v1/prospects/{id}/notes/{note_id}Get one note
PATCH/v1/prospects/{id}/notes/{note_id}Edit the body
DELETE/v1/prospects/{id}/notes/{note_id}Delete the note
body bodystringrequired
The note, 1 to 10,000 characters. Used by POST and PATCH.
Request example
curl -X POST "https://api.v2.dealmachine.com/v1/prospects/prospect_8812/notes" \ -H "Authorization: Bearer dm_sk_live_xxx" \ -H "Content-Type: application/json" \ -d '{ "body": "Owner called back, wants an offer by Friday" }'
Response example
{ "data": { "id": "note_9", "prospect_id": "prospect_8812", "body": "Owner called back, wants an offer by Friday", "author": { "type": "api_key", "user_id": null, "name": null, "api_key_id": "key_9f1c..." }, "created_at": "2026-08-26T16:20:00.000Z", "updated_at": "2026-08-26T16:20:00.000Z" } }