GET
/
portal
/
upvotes
curl --request GET \
  --url https://productlane.com/api/v1/portal/upvotes \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "isDeleted": true,
    "version": 123,
    "contactId": "<string>",
    "issueId": "<string>",
    "projectId": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

projectId
string
issueId
string

Response

200
application/json
Successful response
id
string
required
createdAt
string
required
isDeleted
boolean
required
version
number
required
contactId
string
required
issueId
string | null
required
projectId
string | null
required