Skip to main content

Get all notes

List notes owned by the user. This API contains pagination. Read more about pagination

Query Parameters
    cursor string

    A cursor for pagination, used to fetch the next set of results.

    limit float

    Possible values: >= 1 and <= 50

    Default value: 20

    The maximum number of notes to return, defaults to 20.

    sortBy string

    Possible values: [newest, oldest]

    Default value: newest

    The sorting order of the notes, defaults to newest first.

Responses

Request has been handled successfully.


Schema
    success boolean
    data object[]
  • Array [
  • id string required

    The unique identifier of the note.

    createdAt date-time required

    The creation date of the note.

    updatedAt date-time required

    The last update date of the note.

    body string required

    Possible values: >= 6 characters and <= 10000 characters

    The main content of the note, must be between the specified minimum and maximum length.

    source string

    The source of the note.

    attachedEntities object[]

    An array of attached entities associated with the note.

  • Array [
  • entityId string required

    The unique identifier for the attached entity.

    entityType string required

    Possible values: [reflection]

    The type of the attached entity, must be one of the predefined NoteEntityType values.

    entityMetadata object

    Additional metadata for the attached entity.

  • ]
  • ranges string[]

    Possible values: Value must match regular expression ^(\d+):(\d+)-(\d+):(\d+)$

    An array of verse ranges associated with the note.

  • ]
  • pagination object
    startCursor string
    endCursor string
    hasNextPage boolean
    hasPreviousPage boolean
Loading...