POST
/
get-flashcard
Get Flashcard
curl --request POST \
  --url http://dolphinflashcards.com/api/get-flashcard \
  --header 'Content-Type: application/json' \
  --data '{
  "userID": "user1",
  "folder": "firstFolder",
  "flashcardName": "firstCard"
}'
{
  "cards": [
    "<string>"
  ],
  "description": "my first flashcard",
  "name": "firstCard"
}

Body

application/json
userID
string
required

The unique identifier of the user who owns the flashcard.

Example:

"user1"

folder
string
required

The name of the folder containing the flashcard.

Example:

"firstFolder"

flashcardName
string
required

The name or title of the flashcard to retrieve.

Example:

"firstCard"

Response

OK

cards
string[]

The card ID, a unique numerical identifier of the exact flashcard retrieved from the folder.

description
string

The description of the flashcard.

Example:

"my first flashcard"

name
string

The name of the flashcard.

Example:

"firstCard"