# List Smart IA Sessions **GET /smart-ia/sessions** Provides a general purpose endpoint to search both "In Progress" and "Completed" Smart IA Sessions A `POST` version of this endpoint is provided if a large number of filters are required. Returns a paginated list of completed and in progress sessions ## Servers - Production: https://connect.century.tech/api/v1 (Production) ## Authentication methods - Api key ## Parameters ### Query parameters - **startDate** (object) Filter the results by session start date Supports either a ISO 8601 formatted date or a Unix timestamp. For example `startDate[gt]=1688200245` or `startDate[lt]=2023-07-15T12:00:00.000Z` The following operators cannot be used together - `gt` and `gte` - `lt` and `lte` - **endDate** (object) Filter the results by session end date Supports either a ISO 8601 formatted date or a Unix timestamp. For example `endDate[gt]=1688200245` or `endDate[lt]=2023-07-15T12:00:00.000Z` The following operators cannot be used together - `gt` and `gte` - `lt` and `lte` - **userId** (array[string(uuid)]) Filter the results by user ID. Multiple identifiers can be specified by repeating the query parameter. e.g. `userId=value1&userId=value2` This parameter supports a maximum of 30 identifiers. - **testId** (array[string(uuid)]) Filter the results by test ID. Multiple identifiers can be specified by repeating the query parameter. e.g. `testId=value1&testId=value2` This parameter supports a maximum of 30 identifiers. - **subject** (array[string]) Filter the results by test subject. Multiple identifiers can be specified by repeating the query parameter. e.g. `subject=value1&subject=value2` This parameter supports a maximum of 30 identifiers. - **limit** (integer(int32)) Specify the pagination limit, defaults to 100 - **offset** (integer(int32)) Specify the pagination offset, defaults to 0. Cannot be used with `cursor` - **cursor** (string(byte) | null) Provide the next or previous page cursor - **status** (string) Filter sessions by status - **sort** (object) Specify the sort order of the results. The default sort order is `sort[field]=startDate&sort[direction]=asc` ## Responses ### 200 #### Body: application/json (object) - **data** (array[object]) - **pagination** (object) Metadata for the current pagination position ### 401 Invalid authentication credentials ### 403 Not authorised to access this resource [Powered by Bump.sh](https://bump.sh)