> 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 # BulkCreateRibbons # Package: catalogV3 # Namespace: RibbonService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/ribbons-v3/bulk-create-ribbons.md ## Permission Scopes: Ribbon write in v3 catalog: SCOPE.STORES.RIBBON_WRITE ## Introduction Creates multiple ribbons. --- ## REST API ### Schema ``` Method: bulkCreateRibbons Description: Creates multiple ribbons. URL: https://www.wixapis.com/stores/v3/bulk/ribbons/create Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: ribbons, ribbons.name Method parameters: param name: returnEntity | type: returnEntity | description: Whether to return the full created ribbon entities in the response. Default: `false` param name: ribbons | type: array | description: Ribbons to create. | required: true - name: name | type: string | description: Ribbon name. | required: true Return type: BulkCreateRibbonsResponse - name: results | type: array | description: Ribbons created by bulk action. - name: itemMetadata | type: ItemMetadata | description: Bulk action metadata for ribbon. - name: id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: item | type: Ribbon | description: Full ribbon entity. Returned only if `returnEntity: true` is passed in the request. - name: id | type: string | description: Ribbon GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the ribbon is updated. To prevent conflicting changes, the current revision must be passed when updating the ribbon. Ignored when creating a ribbon. - name: createdDate | type: string | description: Date and time the ribbon was created. - name: updatedDate | type: string | description: Date and time the ribbon was updated. - name: name | type: string | description: Ribbon name. - name: assignedProductCount | type: integer | description: Number of products this ribbon is assigned to. Includes both primary and additional ribbons. > **Note:** Returned only when you pass `"ASSIGNED_PRODUCT_COUNT"` to the `fields` array in Ribbon API requests. - name: bulkActionMetadata | type: BulkActionMetadata | description: Bulk action metadata. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### Bulk create ribbons Create 2 ribbons at once. ```curl curl -X POST \ 'https://www.wixapis.com/stores/v3/bulk/ribbons/create' \ -H 'Content-type: application/json' \ -H 'Authorization: ' \ -d '{ "ribbons": [ { "name": "New Offer!" }, { "name": "New collection" } ], "returnEntity": true }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.catalogV3.RibbonService.bulkCreateRibbons(ribbons, options) Description: Creates multiple ribbons. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: ribbons, ribbons.name Method parameters: param name: options | type: BulkCreateRibbonsOptions none - name: returnEntity | type: boolean | description: Whether to return the full created ribbon entities in the response. Default: `false` param name: ribbons | type: array | description: Ribbons to create. | required: true - name: name | type: string | description: Ribbon name. | required: true Return type: PROMISE - name: results | type: array | description: Ribbons created by bulk action. - name: itemMetadata | type: ItemMetadata | description: Bulk action metadata for ribbon. - name: _id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: item | type: Ribbon | description: Full ribbon entity. Returned only if `returnEntity: true` is passed in the request. - name: _id | type: string | description: Ribbon GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the ribbon is updated. To prevent conflicting changes, the current revision must be passed when updating the ribbon. Ignored when creating a ribbon. - name: _createdDate | type: Date | description: Date and time the ribbon was created. - name: _updatedDate | type: Date | description: Date and time the ribbon was updated. - name: name | type: string | description: Ribbon name. - name: assignedProductCount | type: integer | description: Number of products this ribbon is assigned to. Includes both primary and additional ribbons. > **Note:** Returned only when you pass `"ASSIGNED_PRODUCT_COUNT"` to the `fields` array in Ribbon API requests. - name: bulkActionMetadata | type: BulkActionMetadata | description: Bulk action metadata. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### Bulk create ribbons ```javascript import { ribbonsV3 } from "@wix/stores"; const ribbons = [ { name: "New Offer!" }, { name: "New collection" } ]; const options = { returnEntity: true }; async function bulkCreateRibbons() { const response = await ribbonsV3.bulkCreateRibbons(ribbons, options); } ``` ### bulkCreateRibbons (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 { ribbonsV3 } from '@wix/stores'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { ribbonsV3 }, // Include the auth strategy and host as relevant }); async function bulkCreateRibbons(ribbons,options) { const response = await myWixClient.ribbonsV3.bulkCreateRibbons(ribbons,options); }; ``` ---