> 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 # DeleteNote # Package: notes # Namespace: Notes # Method link: https://dev.wix.com/docs/api-reference/crm/members-contacts/contacts/notes/notes-v2/delete-note.md ## Permission Scopes: Manage Notes: SCOPE.DC-CRM.MANAGE-NOTES ## Introduction Deletes a note. --- ## REST API ### Schema ``` Method: deleteNote Description: Deletes a note. URL: https://www.wixapis.com/crm/notes/v2/notes/{noteId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: noteId Method parameters: param name: noteId | type: none | required: true Return type: DeleteNoteResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Note Deletes a Note ```curl curl -X DELETE \ 'https://www.wixapis.com/crm/notes/v2/notes/547bb310-8e15-45d2-8118-aa272dcb1d75' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.notes.Notes.deleteNote(noteId) Description: Deletes a note. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: noteId Method parameters: param name: noteId | type: string | description: Note GUID. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteNote ```javascript import { notes } from '@wix/crm'; async function deleteNote(noteId) { const response = await notes.deleteNote(noteId); }; ``` ### deleteNote (with elevated permissions) ```javascript import { notes } from '@wix/crm'; import { auth } from '@wix/essentials'; async function myDeleteNoteMethod(noteId) { const elevatedDeleteNote = auth.elevate(notes.deleteNote); const response = await elevatedDeleteNote(noteId); } ``` ### deleteNote (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 { notes } from '@wix/crm'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { notes }, // Include the auth strategy and host as relevant }); async function deleteNote(noteId) { const response = await myWixClient.notes.deleteNote(noteId); }; ``` ---