Slite · Example Payload

Searchnotes

DocumentationKnowledge BaseCollaborationNotesTeamAsynchronous WorkAISearch

Searchnotes is an example object payload from Slite, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathexamples

Example Payload

Raw ↑
{
  "operationId": "searchNotes",
  "method": "GET",
  "path": "/search-notes",
  "examples": {
    "response_200_Example_1": {
      "nbPages": 2,
      "page": 0,
      "hits": [
        {
          "lastEditedAt": "2021-01-02T00:00:00.000Z",
          "highlight": "...easily connect Slite to your own process, you can use <b>Slite public api</b> to perform search...",
          "id": "noteId",
          "title": "Slite interconnection",
          "type": "rich_text",
          "updatedAt": "2021-01-01T00:00:00.000Z",
          "archivedAt": null,
          "parentNotes": [
            {
              "id": "channelId",
              "title": "Channel"
            },
            {
              "id": "parentId",
              "title": "Parent note"
            }
          ]
        }
      ]
    }
  }
}