cURL
curl --request POST \ --url http://dolphinflashcards.com/api/create-flashcard \ --header 'Content-Type: application/json' \ --data '{ "userID": "user1", "flashcardName": "firstCard", "flashcardDescription": "my first flashcard", "folder": "top-level-parent-name/parent-name-2/parent-name-3", "cards": [ { "front": "Monday", "back": "Evening", "reviewStatus": "0.0", "lastReview": "13/08/2024" } ] }'
[ { "200": 123, "success": true } ]
Create or edit a flashcard set for a user. Flashcards contain front, back, review status, and last review date properties.
The body is of type object.
object
OK. Returned when the request is successfully executed.