Skip to main content
POST
/
flash
/
bookmarks
/
add
Add Flash Bookmark
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>"
    ]
  }
}

Body

application/json
flashId
string
required

ID of the flash listing to bookmark

artistId
string
required

ID of the artist who created the flash

notes
string

Optional notes about the bookmark

customTags
string[]

Optional custom tags for the bookmark

Response

Bookmark created successfully

success
boolean
required

Whether the operation was successful

bookmark
object
required

The created bookmark