Slite · Example Payload

Getnotechildren

DocumentationKnowledge BaseCollaborationNotesTeamAsynchronous WorkAISearch

Getnotechildren 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": "getNoteChildren",
  "method": "GET",
  "path": "/notes/{noteId}/children",
  "examples": {
    "response_200_Example_1": {
      "hasNextPage": false,
      "nextCursor": null,
      "total": 1,
      "notes": [
        {
          "id": "noteId",
          "createdAt": "2024-01-01T00:00:00.000Z",
          "updatedAt": "2024-01-01T00:00:00.000Z",
          "lastEditedAt": "2024-01-02T00:00:00.000Z",
          "parentNoteId": "parentNoteId",
          "title": "Slite interconnection",
          "url": "https://slite.slite.com/api/s/noteId/Slite%20interconnection",
          "archivedAt": null
        }
      ]
    }
  }
}