Skip to content

Documentation / joplin-api / NoteProperties

Interface: NoteProperties

Extends

Properties

altitude

altitude: number

numeric

Defined in

model/NoteProperties.ts:28


application_data

application_data: string

text

Defined in

model/NoteProperties.ts:60


author

author: string

text

Defined in

model/NoteProperties.ts:32


base_url

base_url: string

If body_html is provided and contains relative URLs, provide the base_url parameter too so that all the URLs can be converted to absolute ones. The base URL is basically where the HTML was fetched from, minus the query (everything after the '?'). For example if the original page was https://stackoverflow.com/search?q=[java]+test, the base URL is https://stackoverflow.com/search.

Defined in

model/NoteProperties.ts:76


body

body: string

The note body, in Markdown. May also contain HTML.

Defined in

model/NoteProperties.ts:12


body_html

body_html: string

Note body, in HTML format

Defined in

model/NoteProperties.ts:72


created_time

created_time: number

When the folder was created.

Inherited from

BaseProperties.created_time

Defined in

model/BaseProperties.ts:9


crop_rect

crop_rect: object

If an image is provided, you can also specify an optional rectangle that will be used to crop the image. In format { x: x, y: y, width: width, height: height }

height

height: number

width

width: number

x

x: number

y

y: number

Defined in

model/NoteProperties.ts:84


encryption_applied

encryption_applied: number

Inherited from

BaseProperties.encryption_applied

Defined in

model/BaseProperties.ts:33


encryption_cipher_text

encryption_cipher_text: string

text

Inherited from

BaseProperties.encryption_cipher_text

Defined in

model/BaseProperties.ts:29


id

id: string

text

Inherited from

BaseProperties.id

Defined in

model/BaseProperties.ts:5


image_data_url

image_data_url: string

An image to attach to the note, in Data URL format.

Defined in

model/NoteProperties.ts:80


is_conflict

is_conflict: number

Tells whether the note is a conflict or not.

Defined in

model/NoteProperties.ts:16


is_shared

is_shared: number

Inherited from

BaseProperties.is_shared

Defined in

model/BaseProperties.ts:37


is_todo

is_todo: IntBool

Tells whether this note is a to-do or not.

Defined in

model/NoteProperties.ts:40


latitude

latitude: number

numeric

Defined in

model/NoteProperties.ts:20


longitude

longitude: number

numeric

Defined in

model/NoteProperties.ts:24


markup_language

markup_language: number

int

Defined in

model/NoteProperties.ts:68


order

order: number

int

Defined in

model/NoteProperties.ts:64


parent_id

parent_id: string

ID of the notebook that contains this note. Change this ID to move the note to a different notebook.

Defined in

model/NoteProperties.ts:8


source

source: string

text

Defined in

model/NoteProperties.ts:52


source_application

source_application: string

text

Defined in

model/NoteProperties.ts:56


source_url

source_url: string

The full URL where the note comes from.

Defined in

model/NoteProperties.ts:36


title

title: string

The tag title.

Inherited from

BaseProperties.title

Defined in

model/BaseProperties.ts:25


todo_completed

todo_completed: IntBool

Tells whether to-do is completed or not. This is a timestamp in milliseconds.

Defined in

model/NoteProperties.ts:48


todo_due

todo_due: IntBool

When the to-do is due. An alarm will be triggered on that date.

Defined in

model/NoteProperties.ts:44


updated_time

updated_time: number

When the folder was last updated.

Inherited from

BaseProperties.updated_time

Defined in

model/BaseProperties.ts:13


user_created_time

user_created_time: number

When the folder was created. It may differ from created_time as it can be manually set by the user.

Inherited from

BaseProperties.user_created_time

Defined in

model/BaseProperties.ts:17


user_updated_time

user_updated_time: number

When the folder was last updated. It may differ from updated_time as it can be manually set by the user.

Inherited from

BaseProperties.user_updated_time

Defined in

model/BaseProperties.ts:21

Released under the MIT License.