PUT Update Automation Sticky Note
PUT
/funnels/{id}/sticky-note
Save or clear the automation's sticky note — the plain-text memo pinned to the top right of the automation canvas.
There is no separate delete endpoint: sending empty or whitespace-only content removes the note and returns sticky_note: null. Content is plain text and is sanitised on the way in; it is stored in funnel meta, not on the funnel row.
The note belongs to the automation as a whole. It is not attached to any step.
Required capability: fcrm_write_funnels
Enforced by FunnelPolicy::verifyRequest(), the policy default for this route group.
Authorizations
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Parameters
Path Parameters
id*
Funnel (automation) id.
Type
Requiredinteger
Request Body
application/json
JSON
{
"content": "string"
}
Responses
Note saved or removed.
application/json
JSON
{
"message": "string",
"sticky_note": "string"
}