GET
/
v2
/
dashboard
/
recently-viewed
List recently viewed command palette items
curl --request GET \
  --url https://api-v2.watchcollect.com/v2/dashboard/recently-viewed \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "label": "<string>",
      "href": "<string>",
      "subtitle": "<string>",
      "thumbnailUrl": "<string>",
      "preview": {
        "primary": "<string>",
        "secondary": "<string>",
        "badge": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Recently viewed items.

items
object[]
required