Remove from not interested
Full code example
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
Remove not interested from a publication.
This returns a void so no need to care about its response if successful.
mutation RemovePublicationProfileNotInterested {
removePublicationProfileNotInterested(request: { profileId: "0x01", publicationId: "0x02-0x01" })
}
Request
profileId - required
The profile id you wish to remove not interested from the authenticated user must own that profile.
publicationId - required
which publication do you wish to remove not interested
Updated 3 months ago