v1

latestOpenAPI 3.1.0MIT2026-07-243952451019.0 KB
Sales::Opportunities::Note

Update Note

Update Note

put/sales/opportunities/notes/{id}

Path parameters

idstring required

Request body

Example request

{
  "sales_opportunities_note": {
    "sales_opportunities_note": {
      "content": "Example Note",
      "created_by_id": 42
    }
  }
}

Response

OK

idinteger

Note ID

public_idstring nullable

Note public ID

opportunity_idinteger

Opportunity

contentstring

Content

created_by_idinteger nullable

The ID of the Team-Membership that created the note. For notes created via the API, this defaults to the ClickFunnels API default User.

created_atstring date-time nullable

Note creation date

updated_atstring date-time nullable

Note last updated date

Example response

{
  "id": 49,
  "public_id": "zAUjDv",
  "opportunity_id": 24,
  "content": "Example note",
  "created_by_id": 53,
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z"
}