MCPcopy Create free account
hub / github.com/0010aor/FlashNotes / listPracticeSessions

Method listPracticeSessions

frontend/src/client/sdk.gen.ts:321–335  ·  view source on GitHub ↗

* List Practice Sessions * List all practice sessions for the current user * @param data The data for the request. * @param data.skip * @param data.limit * @returns PracticeSessionList Successful Response * @throws ApiError

(
    data: FlashcardsListPracticeSessionsData = {},
  )

Source from the content-addressed store, hash-verified

319 * @throws ApiError
320 */
321 public static listPracticeSessions(
322 data: FlashcardsListPracticeSessionsData = {},
323 ): CancelablePromise<FlashcardsListPracticeSessionsResponse> {
324 return __request(OpenAPI, {
325 method: 'GET',
326 url: '/api/v1/practice-sessions',
327 query: {
328 skip: data.skip,
329 limit: data.limit,
330 },
331 errors: {
332 422: 'Validation Error',
333 },
334 })
335 }
336
337 /**
338 * Get Practice Session Status

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected