mirror of
https://github.com/LukeHagar/clerk-sdk-java.git
synced 2025-12-07 04:19:27 +00:00
12 lines
3.9 KiB
Markdown
12 lines
3.9 KiB
Markdown
# GetSessionListRequest
|
|
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description |
|
|
| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
|
|
| `clientId` | *Optional<? extends String>* | :heavy_minus_sign: | List sessions for the given client |
|
|
| `userId` | *Optional<? extends String>* | :heavy_minus_sign: | List sessions for the given user |
|
|
| `status` | [Optional<? extends com.clerk.backend_api.models.operations.Status>](../../models/operations/Status.md) | :heavy_minus_sign: | Filter sessions by the provided status |
|
|
| `limit` | *Optional<? extends Long>* | :heavy_minus_sign: | Applies a limit to the number of results returned.<br/>Can be used for paginating the results together with `offset`. |
|
|
| `offset` | *Optional<? extends Long>* | :heavy_minus_sign: | Skip the first `offset` results when paginating.<br/>Needs to be an integer greater or equal to zero.<br/>To be used in conjunction with `limit`. | |