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

Method readCard

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

* Read Card * @param data The data for the request. * @param data.collectionId * @param data.cardId * @returns Card Successful Response * @throws ApiError

(
    data: FlashcardsReadCardData,
  )

Source from the content-addressed store, hash-verified

221 * @throws ApiError
222 */
223 public static readCard(
224 data: FlashcardsReadCardData,
225 ): CancelablePromise<FlashcardsReadCardResponse> {
226 return __request(OpenAPI, {
227 method: 'GET',
228 url: '/api/v1/collections/{collection_id}/cards/{card_id}',
229 path: {
230 collection_id: data.collectionId,
231 card_id: data.cardId,
232 },
233 errors: {
234 422: 'Validation Error',
235 },
236 })
237 }
238
239 /**
240 * Update Card

Callers 1

getByIdMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected