> 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: updateBusinessContact(businessContact: BusinessContactData, options: UpdateBusinessContactOptions) # Method package: wixBusinessToolsV2 # Method menu location: wixBusinessToolsV2 --> siteProperties --> updateBusinessContact # Method Link: https://dev.wix.com/docs/velo/apis/wix-business-tools-v2/site-properties/update-business-contact.md # Method Description: Updates a site's business contact information. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Update Business Contact (dashboard page code) ```javascript import { siteProperties } from 'wix-business-tools.v2'; import { elevate } from 'wix-auth'; /* Sample businessContact value: * { * address: { * apartmentNumber: '', * city: 'New York', * coordinates: { * latitude: 40.7128, * longitude: -74.0060 * }, * country: 'US', * googleFormattedAddress: '123 Broadway, New York, NY 10001', * hint: { * placement: 'BEFORE', * text: 'On the corner - front entrance on 5th Avenue' * }, * isPhysical: true, * state: 'NY', * street: 'Broadway', * streetNumber: '123', * zip: '10001' * }, * email: 'mainaddress@example.com', * fax: '011-1-212-555-6789', * phone: '212-555-1234' * } * * Sample fields value: ['address', 'email', 'fax', 'phone'] */ export async function myUpdateBusinessContactFunction(businessContact, fields) { try { const elevatedUpdateBusinessContact = elevate(siteProperties.updateBusinessContact); await elevatedUpdateBusinessContact(businessContact, fields); console.log('Successfully updated business contact'); return true; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to void */ ``` ## Update Business Contact (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 businessContact value: * { * address: { * apartmentNumber: '', * city: 'New York', * coordinates: { * latitude: 40.7128, * longitude: -74.0060 * }, * country: 'US', * googleFormattedAddress: '123 Broadway, New York, NY 10001', * hint: { * placement: 'BEFORE', * text: 'On the corner - front entrance on 5th Avenue' * }, * isPhysical: true, * state: 'NY', * street: 'Broadway', * streetNumber: '123', * zip: '10001' * }, * email: 'mainaddress@example.com', * fax: '011-1-212-555-6789', * phone: '212-555-1234' * } * * Sample fields value: ['address', 'email', 'fax', 'phone'] */ export const myUpdateBusinessContactFunction = webMethod(Permissions.Anyone, async (businessContact, fields) => { try { const elevatedUpdateBusinessContact = elevate(siteProperties.updateBusinessContact); await elevatedUpdateBusinessContact(businessContact, fields); console.log('Successfully updated business contact'); return true; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to void */ ``` ## Update email of business contact ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { siteProperties } from 'wix-business-tools.v2'; import { elevate } from 'wix-auth'; /* Sample businessContact value: * { * email: 'mainaddress@example.com' * } * * Sample fields value: ['email'] */ export const myUpdateBusinessContactFunction = webMethod(Permissions.Anyone, async (businessContact, fields) => { try { const elevatedUpdateBusinessContact = elevate(siteProperties.updateBusinessContact); await elevatedUpdateBusinessContact(businessContact, fields); console.log('Successfully updated business contact'); return true; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to void */ ``` ## updateBusinessContact() for only specific fields ```javascript /************************************************* * Backend code - update-business-contact.web.js * ************************************************/ import { Permissions, webMethod } from 'wix-web-module'; import { siteProperties } from 'wix-business-tools.v2'; import { elevate } from 'wix-auth'; export const contactDetailsUpdate = webMethod(Permissions.Anyone, async (businessContact, fields) => { try { const elevatedUpdateBusinessContact = elevate(siteProperties.updateBusinessContact); await elevatedUpdateBusinessContact(businessContact, fields); console.log('Success! Contact Details Updated'); return true; } catch (error) { console.error(error); throw new Error(error); } }); /************* * Page code * ************/ import { contactDetailsUpdate } from 'backend/update-business-contact.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 contactDetailsUpdate(paramDetails.updateDetails, paramDetails.checkedFields); if (isUpdated) { console.log('Business Contact successfully updated'); $w('#successfulUpdateMsg').show(); setTimeout(() => { $w('#successfulUpdateMsg').hide(); }, 10000); } } }); }); function getParamDetails() { const checkedFields = []; const updateDetails = {} if ($w('#address').value.length) { checkedFields.push('address'); updateDetails.address = $w('#address').value; } if ($w('#email').value.length) { checkedFields.push('email'); updateDetails.email = $w('#email').value; } if ($w('#fax').value.length) { checkedFields.push('fax'); updateDetails.fax = $w('#fax').value; } if ($w('#phone').value.length) { checkedFields.push('phone'); updateDetails.phone = $w('#phone').value; } return {updateDetails, checkedFields}; } ``` ---