> 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: bulkCreateDraftPosts(draftPosts: Array, options: BulkCreateDraftPostsOptions) # Method package: wixBlogBackend # Method menu location: wixBlogBackend --> draftPosts --> bulkCreateDraftPosts # Method Link: https://dev.wix.com/docs/velo/apis/wix-blog-backend/draft-posts/bulk-create-draft-posts.md # Method Description: Creates multiple draft posts. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Bulk create 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 elevatedBulkCreateDraftPosts = elevate(draftPosts.bulkCreateDraftPosts) /* Sample draftPosts value: * { * "draftPosts": [ * "draftPost": { * "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" * }, * { * "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" * }, * ] * } */ export const myBulkCreateDraftPosts = webMethod( Permissions.Anyone, async (options) => { try { const draftPosts = await elevatedBulkCreateDraftPosts(options); console.log('Created 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 create draft posts ```javascript import { draftPosts } from 'wix-blog-backend'; /* Sample draftPosts value: * { * "draftPosts": [ * "draftPost": { * "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" * }, * { * "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" * }, * ] * } */ export async const myBulkCreateDraftPosts(options) => { try { const draftPosts = await draftPosts.bulkCreateDraftPosts(options); console.log('Created 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" } ] } */ ``` ---