Class ListClientsRequest
java.lang.Object
ai.vectros.resources.identity.requests.ListClientsRequest
-
Method Details
-
getOrgId
- Returns:
- Return only clients belonging to this organization. Pass the Vectros-assigned UUID of an org; use
GET /v1/orgs?externalId=to resolve your own identifier to this UUID.
-
getUserId
- Returns:
- Return only clients owned by this user. Pass the Vectros-assigned UUID of a user; use
GET /v1/users?externalId=to resolve your own identifier to this UUID.
-
getExternalId
- Returns:
- Look up a client by your own
externalId. Returns a single-element list, or an empty list if no client matches.
-
getStartFrom
- Returns:
- Pagination cursor. Pass the
nextCursorfrom the previous page to fetch the next page; omit it for the first page.
-
getLimit
- Returns:
- Maximum number of clients to return per page (1–100; defaults to 20).
-
getType
- Returns:
- Record type of the schema whose lookup fields you are querying. Must be supplied together with
fieldand exactly one lookup mode.
-
getField
- Returns:
- Name of the lookup field to filter by. Must be declared as a lookup field on the schema identified by
type. Supply it together withtypeand exactly one lookup mode.
-
getValue
- Returns:
- Exact value to match for
field(equality mode). Mutually exclusive withfrom/toandprefix. Not allowed for a sensitive field — usePOST /v1/clients/lookupinstead so the value is not exposed in the URL.
-
getFrom
- Returns:
- Inclusive lower bound for a range lookup. Requires
to, and is only allowed on non-sensitive fields that have range queries enabled. Mutually exclusive withvalueandprefix.
-
getTo
- Returns:
- Inclusive upper bound for a range lookup. Requires
from.
-
getPrefix
- Returns:
- Match clients whose value for
fieldstarts with this prefix. Only allowed on string fields that have range queries enabled. Mutually exclusive withvalueandfrom/to.
-
getOrder
- Returns:
- Sort direction for the results:
asc(the default) ordesc.
-
equals
-
getAdditionalProperties
-
hashCode
public int hashCode() -
toString
-
builder
-