Slite · Example Payload

Searchusers

DocumentationKnowledge BaseCollaborationNotesTeamAsynchronous WorkAISearch

Searchusers 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": "searchUsers",
  "method": "GET",
  "path": "/users",
  "examples": {
    "response_200_Example_1": {
      "users": [
        {
          "id": "userId123",
          "email": "john.doe@example.com",
          "displayName": "John Doe"
        },
        {
          "id": "userId456",
          "email": "jane.doe@example.com",
          "displayName": "Jane Doe"
        }
      ],
      "total": 2,
      "hasNextPage": false,
      "nextCursor": null
    }
  }
}