Mark as not interested
Full code example
https://github.com/lens-protocol/api-examples/blob/master/src/not-interested/add-not-interested.ts
This API call allows you to mark publication as not interested with a profile off-chain without needing to sign.
This request is protected by authentication
hint: this means it requires an x-access-token header put in the request with your authentication token.
API Design
Mark publication as not interested.
This returns a void so no need to care about its response if successful.
mutation AddPublicationProfileNotInterested {
addPublicationProfileNotInterested(request: { profileId: "0x01", publicationId: "0x02-0x01" })
}
Request
profileId - required
The profile id you wish to mark as not interested from the authenticated user must own that profile.
publicationId - required
which publication do you wish to mark as not interested
Updated 3 months ago