Represents a search request for a filtered list of TeamMember
objects.
SearchTeamMembersRequest
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. |
{
"limit": 10,
"query": {
"filter": {
"location_ids": [
"0G5P3VGACMMQZ"
],
"status": "ACTIVE",
"is_owner": false
}
},
"cursor": "cursor8"
}