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
Composite key: ${userId}_${flashId}
${userId}_${flashId}
ID of the user who bookmarked the flash
ID of the bookmarked flash
Denormalized artist ID for easier queries
Timestamp when bookmark was created
Optional user notes about the bookmark
Optional user-defined tags