Write a note on a lead
Adds a note to a lead's timeline. Notes are what you know about a lead that the data does not say, and they are visible to everyone in the workspace.
/leadActivities.createAuthorization
bearerAuth Enter your MailMoo API key (format: sk_live_...)
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/leadActivities.create" \ -H "Content-Type: application/json" \ -d '{ "leadId": "3c6e2b8e-0e8f-48db-8791-27271df10113", "type": "NOTE", "content": "string" }'{ "id": "string", "leadId": "string", "workspaceId": "string", "userId": "string", "type": "NOTE", "content": "string", "metadata": {}, "dueAt": "string", "remindAt": "string", "scheduledFor": "string", "createdAt": "string", "updatedAt": "string", "property1": null, "property2": null}Read a lead's timeline GET
Everything that has happened with a lead in one feed: notes, tasks and recorded changes interleaved with the messages actually sent and received, newest first. Messages carry a `channel` of `li` or `email`. Open tasks are repeated in full under `openTasks` so a task due later still surfaces on the first page.
Edit a note POST
Rewrites the text of a note. Only the note's author may edit it, so a key can edit the notes it wrote and no others.

