Clears the cache for users api requests.
Returns the number of users in a given tenant
Returns the number of users in a given tenant
an object with query parameters
OptionaltenantId?: stringOptionaloptions: ApiCallOptionsCreates an invited user.
Creates an invited user.
an object with the body content
Optionaloptions: ApiCallOptionsDeletes the requested user.
Deletes the requested user.
The ID of the user to delete.
Optionaloptions: ApiCallOptionsRetrieves a list of users matching the filter using an advanced query string.
Retrieves a list of users matching the filter using an advanced query string.
an object with query parameters
Optionalfields?: stringA comma-delimited string of the requested fields per entity. If the 'links' value is omitted, then the entity HATEOAS link will also be omitted.
Optionallimit?: numberThe number of user entries to retrieve.
Optionalnext?: stringGet users with IDs that are higher than the target user ID. Cannot be used in conjunction with prev.
Optionalprev?: stringGet users with IDs that are lower than the target user ID. Cannot be used in conjunction with next.
Optionalsort?: "name" | "-name" | "+name"The field to sort by, with +/- prefix indicating sort order
an object with the body content
Optionaloptions: ApiCallOptionsRedirects to retrieve the user resource associated with the JWT claims.
Redirects to retrieve the user resource associated with the JWT claims.
Optionaloptions: ApiCallOptionsReturns the requested user.
Returns the requested user.
The user's unique identifier
an object with query parameters
Optionalfields?: stringA comma-delimited string of the requested fields per entity. If the 'links' value is omitted, then the entity HATEOAS link will also be omitted.
Optionaloptions: ApiCallOptionsReturns a list of users using cursor-based pagination.
Returns a list of users using cursor-based pagination.
an object with query parameters
Optionalemail?: stringOptionalendingBefore?: stringOptionalfields?: stringA comma-delimited string of the requested fields per entity. If the 'links' value is omitted, then the entity HATEOAS link will also be omitted.
Optionalfilter?: stringThe advanced filtering to use for the query. Refer to RFC 7644 for the syntax. Cannot be combined with any of the fields marked as deprecated. All conditional statements within this query parameter are case insensitive.
The following fields support the eq operator: id, subject, name, email, status, clientId, assignedRoles.id assignedRoles.name, assignedGroups.id, assignedGroupsAssignedRoles.name
Additionally, the following fields support the co operator: name, email, subject
Queries may be rate limited if they differ greatly from these examples:
(id eq "62716ab404a7bd8626af9bd6" or id eq "62716ac4c7e500e13ff5fa22") and (status eq "active" or status eq "disabled")
name co "query" or email co "query" or subject co "query" or id eq "query" or assignedRoles.name eq "query"
Any filters for status must be grouped together and applied to the whole query.
Valid:
(name eq "Bob" or name eq "Alice") and (status eq "active" or status eq "disabled")
Invalid:
name eq "Bob" or name eq "Alice" and (status eq "active" or status eq "disabled")
Optionallimit?: numberThe number of user entries to retrieve.
Optionalnext?: stringGet users that come after this cursor value when sorted. Cannot be used in conjunction with prev.
Optionalprev?: stringGet users that come before this cursor value when sorted. Cannot be used in conjunction with next.
Optionalrole?: stringOptionalsort?: The field to sort by, with +/- prefix indicating sort order
OptionalsortBy?: "name"OptionalsortOrder?: "asc" | "desc"OptionalstartingAfter?: stringOptionalstatus?: "active" | "disabled" | "deleted" | "invited" | "provisioned"Optionalsubject?: stringOptionaltenantId?: stringOptionaltotalResults?: booleanWhether to return a total match count in the result. Defaults to false. It will trigger an extra DB query to count, reducing the efficiency of the endpoint.
Optionaloptions: ApiCallOptionsInvite one or more users by email address.
Invite one or more users by email address.
an object with the body content
Optionaloptions: ApiCallOptionsUpdates fields for a user resource
Updates fields for a user resource
The ID of the user to update.
an object with the body content
Optionaloptions: ApiCallOptions
Clears the cache for users api requests.