> 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 # Method name: bulkDeleteDraftPosts(postIds: Array, options: BulkDeleteDraftPostsOptions) # Method package: wixBlogBackend # Method menu location: wixBlogBackend --> draftPosts --> bulkDeleteDraftPosts # Method Link: https://dev.wix.com/docs/velo/apis/wix-blog-backend/draft-posts/bulk-delete-draft-posts.md # Method Description: Deletes multiple draft posts. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Bulk delete draft posts (export from backend code) ```javascript import { draftPosts } from 'wix-blog-backend'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedBulkDeleteDraftPosts = elevate(draftPosts.bulkDeleteDraftPosts) /* * Sample postIds value: ["448d1238-0072-4458-a280-bf81c2dd8af1", "d1c6418d-322b-4976-a815-80ee35c2a5e7"] * * Sample options value: * * { * "permanent": true * } */ export const myBulkDeleteDraftPosts = webMethod( Permissions.Anyone, async (options) => { try { const draftPosts = await elevatedBulkDeleteDraftPosts(options); console.log('Deleted draft posts:', draftPosts) return draftPosts; } catch (error) { console.error(error); // Handle the error } } ); /* Promise resolves to: { "bulkActionMetadada": { "totalFailures": 0, "totalSuccesses": 2, "undetailedFailures": 0 }, "results": [ "item": { "categoryIds": [], "commentingEnabled": true, "featured": true, "language": "en", "media": { "custom": false, "displayed": true }, "memberId": "c00e8a5c-322b-4e77-8813-002e3ea7e811", "previewTextParagraph": 2, "pricingPlanIds": [], "relatedPostIds": [], "richContent": { "nodes": [ { "type": "PARAGRAPH", "id": "pvirv1", "nodes": [ { "type": "TEXT", "id": "", "nodes": [], "textData": { "text": "Hello world", "decorations": [] } } ], "paragraphData": {} } ], } "seoData": { "tags": [] "}, "seoSlug": "hello-world", "tagIds": [], "title": "Hello, world" }, "item": { "categoryIds": [], "commentingEnabled": true, "featured": true, "language": "en", "media": { "custom": false, "displayed": true }, "memberId": "c00e8a5c-322b-4e77-8813-002e3ea7e811", "previewTextParagraph": 2, "pricingPlanIds": [], "relatedPostIds": [], "richContent": { "nodes": [ { "type": "PARAGRAPH", "id": "pvirv1", "nodes": [ { "type": "TEXT", "id": "", "nodes": [], "textData": { "text": "Hello to you too", "decorations": [] } } ], "paragraphData": {} } ], } "seoData": { "tags": [] "}, "seoSlug": "hello-to-you-too", "tagIds": [], "title": "Hello to you too" } ] } */ ``` ## Bulk delete draft posts (dashboard page code) ```javascript import { draftPosts } from 'wix-blog-backend'; /* * Sample postIds value: ["448d1238-0072-4458-a280-bf81c2dd8af1", "d1c6418d-322b-4976-a815-80ee35c2a5e7"] * * Sample options value: * * { * "permanent": true * } */ export async const myBulkDeleteDraftPosts(options) => { try { const draftPosts = await draftPosts.bulkDeleteDraftPosts(options); console.log('Deleted draft posts:', draftPosts) return draftPosts; } catch (error) { console.error(error); // Handle the error } }; /* Promise resolves to: { "bulkActionMetadada": { "totalFailures": 0, "totalSuccesses": 2, "undetailedFailures": 0 }, "results": [ "item": { "categoryIds": [], "commentingEnabled": true, "featured": true, "language": "en", "media": { "custom": false, "displayed": true }, "memberId": "c00e8a5c-322b-4e77-8813-002e3ea7e811", "previewTextParagraph": 2, "pricingPlanIds": [], "relatedPostIds": [], "richContent": { "nodes": [ { "type": "PARAGRAPH", "id": "pvirv1", "nodes": [ { "type": "TEXT", "id": "", "nodes": [], "textData": { "text": "Hello world", "decorations": [] } } ], "paragraphData": {} } ], } "seoData": { "tags": [] "}, "seoSlug": "hello-world", "tagIds": [], "title": "Hello, world" }, "item": { "categoryIds": [], "commentingEnabled": true, "featured": true, "language": "en", "media": { "custom": false, "displayed": true }, "memberId": "c00e8a5c-322b-4e77-8813-002e3ea7e811", "previewTextParagraph": 2, "pricingPlanIds": [], "relatedPostIds": [], "richContent": { "nodes": [ { "type": "PARAGRAPH", "id": "pvirv1", "nodes": [ { "type": "TEXT", "id": "", "nodes": [], "textData": { "text": "Hello to you too", "decorations": [] } } ], "paragraphData": {} } ], } "seoData": { "tags": [] "}, "seoSlug": "hello-to-you-too", "tagIds": [], "title": "Hello to you too" } ] } */ ``` ---