| title | Overview |
|---|---|
| description | Plane Sticky API overview. Learn about endpoints, request/response format, and how to work with sticky via REST API. |
| keywords | plane api, sticky notes, quick notes, personal notes, workspace stickies, rest api, api integration |
Stickies are workspace-level notes that allow you to capture quick thoughts, ideas, or important reminders.
-
iduuidUnique identifier for the sticky
-
namestringName of the sticky
-
descriptionobjectJSON description of the sticky
-
description_htmlstringHTML description of the sticky
-
description_strippedstringStripped version of the HTML description
-
description_binarystringBinary description of the sticky
-
logo_propsobjectLogo properties for the sticky
-
colorstringColor of the sticky
-
background_colorstringBackground color of the sticky
-
workspaceuuidWorkspace UUID which is automatically saved
-
owneruuidUser ID of the sticky owner
-
sort_ordernumberSort order for the sticky
-
created_attimestampThe timestamp when the sticky was created
-
updated_attimestampThe timestamp when the sticky was last updated
-
created_byuuidID of the user who created the sticky
-
updated_byuuidID of the user who last updated the sticky
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"created_at": "2023-11-19T11:56:55.176802Z",
"updated_at": "2023-11-19T11:56:55.176809Z",
"name": "Important Note",
"description": {},
"description_html": "<p>This is an important note</p>",
"color": "#FF5733",
"background_color": "#FFF9E6",
"sort_order": 1000.0,
"workspace": "cd4ab5a2-1a5f-4516-a6c6-8da1a9fa5be4",
"owner": "16c61a3a-512a-48ac-b0be-b6b46fe6f430"
}