Slite integration (Productivity). Imported from open-connector.
https://api.slite.com/v1/notes
| Param | Type | Required | Description |
|---|---|---|---|
| ownerId | string | optional | Optional Slite user identifier used to filter notes by owner. |
| parentNoteId | string | optional | Optional Slite parent note identifier used to list direct child notes. |
| orderBy | string | optional | The ordering applied to the returned notes. |
| cursor | string | optional | Optional pagination cursor returned by a previous list_notes call. |
/v1/notes/{noteId}
| Param | Type | Required | Description |
|---|---|---|---|
| noteId | string | required | The Slite note identifier to fetch. |
| format | string | optional | The content format Slite should return. |
/v1/notes
| Param | Type | Required | Description |
|---|---|---|---|
| title | string | required | The title of the note to create. |
| parentNoteId | string | optional | Optional parent note identifier. When omitted, Slite creates the note in the pe… |
| templateId | string | optional | Optional Slite template identifier to apply to the new note. |
| markdown | string | optional | Optional Markdown content used to populate the new note. |
| html | string | optional | Optional HTML content used to populate the new note. |
| attributes | array | optional | Optional collection attribute values ordered by the parent collection columns. |
/v1/notes/{noteId}
| Param | Type | Required | Description |
|---|---|---|---|
| noteId | string | required | The Slite note identifier to update. |
| title | string | optional | The new title for the note. |
| markdown | string | optional | The new Markdown content for the note. |
| html | string | optional | The new HTML content for the note. |
| attributes | array | optional | The replacement collection attribute values ordered by the parent collection co… |
/v1/notes/{noteId}
| Param | Type | Required | Description |
|---|---|---|---|
| noteId | string | required | The Slite note identifier to delete. |
/v1/search-notes
| Param | Type | Required | Description |
|---|---|---|---|
| query | string | optional | The free-text query used to search notes. |
| parentNoteId | string | optional | Optional parent note identifier used to restrict search to a subtree. |
| depth | number | optional | Optional note depth filter applied by Slite. |
| reviewState | string | optional | The Slite review state filter. |
| page | integer | optional | The zero-based results page to request from Slite. |
| hitsPerPage | integer | optional | The number of hits to request per page. |
| highlightPreTag | string | optional | Optional HTML tag inserted before highlighted matches. |
| highlightPostTag | string | optional | Optional HTML tag inserted after highlighted matches. |
| lastEditedAfter | string | optional | Optional ISO timestamp used to restrict results to notes edited after this mome… |
| lastUpdatedAfter | string | optional | Optional ISO timestamp used to restrict results to notes updated after this mom… |
| includeArchived | boolean | optional | Whether Slite should include archived notes in the search results. |
/v1/groups
| Param | Type | Required | Description |
|---|---|---|---|
| query | string | required | The group name query string to match. |
| cursor | string | optional | Optional pagination cursor returned by Slite group search. |
/v1/groups/{groupId}
| Param | Type | Required | Description |
|---|---|---|---|
| groupId | string | required | The Slite group identifier to fetch. |