Bookmarks a flash listing for the authenticated user
cURL
curl --request POST \ --url http://localhost:3000/api/flash/bookmarks/add \ --header 'Content-Type: application/json' \ --data ' { "flashId": "<string>", "artistId": "<string>", "notes": "<string>", "customTags": [ "<string>" ] } '
{ "success": true, "bookmark": { "id": "<string>", "userId": "<string>", "flashId": "<string>", "artistId": "<string>", "createdAt": 123, "notes": "<string>", "customTags": [ "<string>" ] } }
ID of the flash listing to bookmark
ID of the artist who created the flash
Optional notes about the bookmark
Optional custom tags for the bookmark
Bookmark created successfully
Whether the operation was successful
The created bookmark
Show child attributes