Class ListOrgsRequest
java.lang.Object
ai.vectros.resources.identity.requests.ListOrgsRequest
-
Method Details
-
getUserId
- Returns:
- Return only organizations owned by this user, given as the Vectros-assigned ID (UUID) of a user. To resolve a user ID from your own identifier, call
GET /v1/users?externalId=.
-
getExternalId
- Returns:
- Look up an organization by your own identifier. Returns a list with the single matching organization, or an empty list if none 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 organizations to return per page (1–100; defaults to 20).
-
getType
- Returns:
- The schema record type whose lookup fields you want to query. Must be supplied together with
fieldand exactly one lookup mode (value,from/to, orprefix).
-
getField
- Returns:
- The schema-declared lookup field to filter on. Must be one of the lookup fields defined on the schema named by
type. Supplied together withtypeand one lookup mode.
-
getValue
- Returns:
- Exact value to match for
field(equality lookup). Mutually exclusive withfrom/toandprefix. Not allowed for a sensitive field — usePOST /v1/orgs/lookupinstead so the value is not exposed in the URL.
-
getFrom
- Returns:
- Inclusive lower bound for a range lookup. Requires
to, and is only supported on non-sensitive fields that have range lookups enabled. Mutually exclusive withvalueandprefix.
-
getTo
- Returns:
- Inclusive upper bound for a range lookup. Requires
from.
-
getPrefix
- Returns:
- Match all values for
fieldthat start with this prefix. Only supported on string fields that have range lookups enabled. Mutually exclusive withvalueandfrom/to.
-
getOrder
- Returns:
- Sort direction for lookup results:
asc(ascending, the default) ordesc(descending).
-
equals
-
getAdditionalProperties
-
hashCode
public int hashCode() -
toString
-
builder
-