Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 987 Bytes

search-team-members-request.md

File metadata and controls

35 lines (26 loc) · 987 Bytes

Search Team Members Request

Represents a search request for a filtered list of TeamMember objects.

Structure

SearchTeamMembersRequest

Fields

Name Type Tags Description
query SearchTeamMembersQuery | undefined Optional Represents the parameters in a search for TeamMember objects.
limit number | undefined Optional The maximum number of TeamMember objects in a page (100 by default).
Constraints: >= 1, <= 200
cursor string | undefined Optional The opaque cursor for fetching the next page. For more information, see
pagination.

Example (as JSON)

{
  "limit": 10,
  "query": {
    "filter": {
      "location_ids": [
        "0G5P3VGACMMQZ"
      ],
      "status": "ACTIVE",
      "is_owner": false
    }
  },
  "cursor": "cursor8"
}