> 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: updateBusinessProfile(businessProfile: BusinessProfileData, options: UpdateBusinessProfileOptions) # Method package: wixBusinessToolsV2 # Method menu location: wixBusinessToolsV2 --> siteProperties --> updateBusinessProfile # Method Link: https://dev.wix.com/docs/velo/apis/wix-business-tools-v2/site-properties/update-business-profile.md # Method Description: Updates a site's business profile. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Update Business Profile (dashboard page code) ```javascript import { siteProperties } from 'wix-business-tools.v2'; import { elevate } from 'wix-auth'; /* Sample businessProfile value: * { * description: 'Whatever the occasion, we have what you need.', * logo: 'a8a52b_bf5596e614d8484e9f1d429ac256e1ad~mv2.jpeg' * } * * Sample fields value: ['description', 'logo'] */ export async function myUpdateBusinessProfileFunction(businessProfile, fields) { try { const elevatedUpdateBusinessProfile = elevate(siteProperties.updateBusinessProfile); await elevatedUpdateBusinessProfile(businessProfile, fields); console.log('Successfully updated business profile'); return true; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to void */ ``` ## Update Business Profile (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { siteProperties } from 'wix-business-tools.v2'; import { elevate } from 'wix-auth'; /* Sample businessProfile value: * { * description: 'Whatever the occasion, we have what you need.', * logo: 'a8a52b_bf5596e614d8484e9f1d429ac256e1ad~mv2.jpeg' * } * * Sample fields value: ['description', 'logo'] */ export const myUpdateBusinessProfileFunction = webMethod(Permissions.Anyone, async (businessProfile, fields) => { try { const elevatedUpdateBusinessProfile = elevate(siteProperties.updateBusinessProfile); await elevatedUpdateBusinessProfile(businessProfile, fields); console.log('Successfully updated business profile'); return true; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to void */ ``` ## Update description of business profile ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { siteProperties } from 'wix-business-tools.v2'; import { elevate } from 'wix-auth'; /* Sample businessProfile value: * { * description: 'We have what you need, whatever the occasion.' * } * * Sample fields value: ['description'] */ export const myUpdateBusinessProfileFunction = webMethod(Permissions.Anyone, async (businessProfile, fields) => { try { const elevatedUpdateBusinessProfile = elevate(siteProperties.updateBusinessProfile); await elevatedUpdateBusinessProfile(businessProfile, fields); console.log('Successfully updated business profile'); return true; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to void */ ``` ## updateBusinessProfile() for only specific fields ```javascript /************************************************* * Backend code - update-business-profile.web.js * ************************************************/ import { Permissions, webMethod } from 'wix-web-module'; import { siteProperties } from 'wix-business-tools.v2'; import { elevate } from 'wix-auth'; export const profileDetailsUpdate = webMethod(Permissions.Anyone, async (businessProfile, fields) => { try { const elevatedUpdateBusinessProfile = elevate(siteProperties.updateBusinessProfile); await elevatedUpdateBusinessProfile(businessProfile, fields); console.log('Success! Profile Details Updated'); return true; } catch (error) { console.error(error); throw new Error(error); } }); /************* * Page code * ************/ import { profileDetailsUpdate } from 'backend/update-business-profile.web'; $w.onReady(() => { $w('#submit').onClick(async () => { const paramDetails = getParamDetails(); if (!paramDetails.checkedFields.length) { $w('#changeAFieldsMsg').show(); setTimeout(() => { $w('#changeAFieldsMsg').hide(); }, 10000); } else { const isUpdated = await profileDetailsUpdate(paramDetails.updateDetails, paramDetails.checkedFields); if (isUpdated) { console.log('Business Profile successfully updated'); $w('#successfulUpdateMsg').show(); setTimeout(() => { $w('#successfulUpdateMsg').hide(); }, 10000); } } }); }); function getParamDetails() { const checkedFields = []; const updateDetails = {}; if ($w('#description').value.length) { checkedFields.push('description'); updateDetails.description = $w('#description').value; } if ($w('#logo').value.length) { checkedFields.push('logo'); updateDetails.logo = $w('#logo').value; } return {updateDetails, checkedFields}; } ``` ---