← Tools Reference

Slite

Slite integration (Productivity). Imported from open-connector.

API key8 toolshttps://api.slite.com
GET
slite_list_notes
List Slite notes with optional owner, parent, ordering, and pagination filters.

/v1/notes

4 parameters
ParamTypeRequiredDescription
ownerIdstringoptionalOptional Slite user identifier used to filter notes by owner.
parentNoteIdstringoptionalOptional Slite parent note identifier used to list direct child notes.
orderBystringoptionalThe ordering applied to the returned notes.
cursorstringoptionalOptional pagination cursor returned by a previous list_notes call.
GET
slite_get_note
Read one Slite note and return its content in Markdown, HTML, or SliteML.

/v1/notes/{noteId}

2 parameters
ParamTypeRequiredDescription
noteIdstringrequiredThe Slite note identifier to fetch.
formatstringoptionalThe content format Slite should return.
POST
slite_create_note
Create a Slite note with markdown or HTML content and optional collection attributes.

/v1/notes

6 parameters
ParamTypeRequiredDescription
titlestringrequiredThe title of the note to create.
parentNoteIdstringoptionalOptional parent note identifier. When omitted, Slite creates the note in the pe…
templateIdstringoptionalOptional Slite template identifier to apply to the new note.
markdownstringoptionalOptional Markdown content used to populate the new note.
htmlstringoptionalOptional HTML content used to populate the new note.
attributesarrayoptionalOptional collection attribute values ordered by the parent collection columns.
PUT
slite_update_note
Update a Slite note title, body content, or collection attributes.

/v1/notes/{noteId}

5 parameters
ParamTypeRequiredDescription
noteIdstringrequiredThe Slite note identifier to update.
titlestringoptionalThe new title for the note.
markdownstringoptionalThe new Markdown content for the note.
htmlstringoptionalThe new HTML content for the note.
attributesarrayoptionalThe replacement collection attribute values ordered by the parent collection co…
DELETE
slite_delete_note
Delete a Slite note and its children by note identifier.

/v1/notes/{noteId}

1 parameter
ParamTypeRequiredDescription
noteIdstringrequiredThe Slite note identifier to delete.
GET
slite_search_notes
Search Slite notes by query string and optional review, depth, archive, and date filters.

/v1/search-notes

11 parameters
ParamTypeRequiredDescription
querystringoptionalThe free-text query used to search notes.
parentNoteIdstringoptionalOptional parent note identifier used to restrict search to a subtree.
depthnumberoptionalOptional note depth filter applied by Slite.
reviewStatestringoptionalThe Slite review state filter.
pageintegeroptionalThe zero-based results page to request from Slite.
hitsPerPageintegeroptionalThe number of hits to request per page.
highlightPreTagstringoptionalOptional HTML tag inserted before highlighted matches.
highlightPostTagstringoptionalOptional HTML tag inserted after highlighted matches.
lastEditedAfterstringoptionalOptional ISO timestamp used to restrict results to notes edited after this mome…
lastUpdatedAfterstringoptionalOptional ISO timestamp used to restrict results to notes updated after this mom…
includeArchivedbooleanoptionalWhether Slite should include archived notes in the search results.
GET
slite_search_groups
Search Slite groups by name and return cursor-based pagination metadata.

/v1/groups

2 parameters
ParamTypeRequiredDescription
querystringrequiredThe group name query string to match.
cursorstringoptionalOptional pagination cursor returned by Slite group search.
GET
slite_get_group
Read one Slite group by identifier.

/v1/groups/{groupId}

1 parameter
ParamTypeRequiredDescription
groupIdstringrequiredThe Slite group identifier to fetch.