> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # DeleteLike # Package: blog # Namespace: LikeService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/delete-like.md ## Permission Scopes: Manage Blog: SCOPE.DC-BLOG.MANAGE-BLOG ## Introduction Deletes a like created by the currently authenticated site visitor or member. >**Note:** >This method requires [visitor or member authentication](https://dev.wix.com/docs/go-headless/coding/rest-api/visitors-and-members/make-api-calls-with-oauth.md). --- ## REST API ### Schema ``` Method: deleteLike Description: Deletes a like created by the currently authenticated site visitor or member. >**Note:** >This method requires [visitor or member authentication](https://dev.wix.com/docs/go-headless/coding/rest-api/visitors-and-members/make-api-calls-with-oauth.md). URL: https://www.wixapis.com/blog/v1/likes/{likeId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: likeId Method parameters: param name: likeId | type: none | required: true Return type: DeleteLikeResponse EMPTY-OBJECT {} ``` ### Examples ### Delete a like ```curl curl -X DELETE \ 'https://www.wixapis.com/blog/v1/likes/87654321-4321-4321-4321-210987654321' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.blog.LikeService.deleteLike(likeId) Description: Deletes a like created by the currently authenticated site visitor or member. >**Note:** >This method requires [visitor or member authentication](https://dev.wix.com/docs/go-headless/coding/rest-api/visitors-and-members/make-api-calls-with-oauth.md). # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: likeId Method parameters: param name: likeId | type: string | description: GUID of the like to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteLike ```javascript import { likes } from '@wix/blog'; async function deleteLike(likeId) { const response = await likes.deleteLike(likeId); }; ``` ### deleteLike (with elevated permissions) ```javascript import { likes } from '@wix/blog'; import { auth } from '@wix/essentials'; async function myDeleteLikeMethod(likeId) { const elevatedDeleteLike = auth.elevate(likes.deleteLike); const response = await elevatedDeleteLike(likeId); } ``` ### deleteLike (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { likes } from '@wix/blog'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { likes }, // Include the auth strategy and host as relevant }); async function deleteLike(likeId) { const response = await myWixClient.likes.deleteLike(likeId); }; ``` ---