> 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 # GetOrCreateRibbon # Package: catalogV3 # Namespace: RibbonService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/ribbons-v3/get-or-create-ribbon.md ## Permission Scopes: Ribbon write in v3 catalog: SCOPE.STORES.RIBBON_WRITE ## Introduction Retrieves a ribbon by name, or creates a ribbon if one with the passed `ribbonName` doesn't exist. --- ## REST API ### Schema ``` Method: getOrCreateRibbon Description: Retrieves a ribbon by name, or creates a ribbon if one with the passed `ribbonName` doesn't exist. URL: https://www.wixapis.com/stores/v3/ribbons/get-or-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: ribbonName Method parameters: param name: fields | type: array | description: Fields to include in the response. Supported values: `ASSIGNED_PRODUCTS_COUNT` - enum: ASSIGNED_PRODUCT_COUNT param name: ribbonName | type: ribbonName | description: Ribbon name to retrieve or create. | required: true Return type: GetOrCreateRibbonResponse - name: ribbon | type: Ribbon | description: Ribbon. - 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. ``` ### Examples ### Get or create a ribbon Fetches the ribbon by name, or creates it if it doesn't exist. ```curl curl -X POST \ 'https://www.wixapis.com/stores/v3/ribbons/get-or-create' \ -H 'Content-type: application/json' \ -H 'Authorization: ' \ -d '{ "ribbonName": "New Arrival" }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.catalogV3.RibbonService.getOrCreateRibbon(ribbonName, options) Description: Retrieves a ribbon by name, or creates a ribbon if one with the passed `ribbonName` doesn't exist. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: ribbonName Method parameters: param name: options | type: GetOrCreateRibbonOptions none - name: fields | type: array | description: Fields to include in the response. Supported values: `ASSIGNED_PRODUCTS_COUNT` - enum: ASSIGNED_PRODUCT_COUNT param name: ribbonName | type: string | description: Ribbon name to retrieve or create. | required: true Return type: PROMISE - name: ribbon | type: Ribbon | description: Ribbon. - 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. ``` ### Examples ### Get or create a ribbon ```javascript import { ribbonsV3 } from "@wix/stores"; const ribbonName = "New Arrival"; async function getOrCreateRibbon() { const response = await ribbonsV3.getOrCreateRibbon(ribbonName); } /* Promise resolves to: * { * "ribbon": { * "_id": "0bc5a458-3517-4ce3-bd4c-94c1ccc69ea2", * "_createdDate": "2025-12-11T09:27:04.000Z", * "_updatedDate": "2025-12-11T09:27:04.000Z", * "revision": "1", * "name": "New Arrival" * } * } */ ``` ### getOrCreateRibbon (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 getOrCreateRibbon(ribbonName,options) { const response = await myWixClient.ribbonsV3.getOrCreateRibbon(ribbonName,options); }; ``` ---