v1

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

Create Note

Create Note

post/sales/opportunities/{opportunity_id}/notes

Path parameters

opportunity_idinteger required

Request body

Example request

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

Response

Created

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"
}