Files
clerk-sdk-java/docs/models/operations/ListOrganizationsRequest.md
2024-06-13 13:51:50 -04:00

14 KiB
Raw Permalink Blame History

ListOrganizationsRequest

Fields

Field Type Required Description
limit Optional<? extends Long> Applies a limit to the number of results returned.
Can be used for paginating the results together with offset.
offset Optional<? extends Long> Skip the first offset results when paginating.
Needs to be an integer greater or equal to zero.
To be used in conjunction with limit.
includeMembersCount Optional<? extends Boolean> Flag to denote whether the member counts of each organization should be included in the response or not.
query Optional<? extends String> Returns organizations with ID, name, or slug that match the given query.
Uses exact match for organization ID and partial match for name and slug.
orderBy Optional<? extends String> Allows to return organizations in a particular order.
At the moment, you can order the returned organizations either by their name, created_at or members_count.
In order to specify the direction, you can use the +/- symbols prepended in the property to order by.
For example, if you want organizations to be returned in descending order according to their created_at property, you can use -created_at.
If you don't use + or -, then + is implied.
Defaults to -created_at.