This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Updates the extended fields of a reservation location without incrementing the revision number.
You can only call this method when authenticated as a Wix app or Wix user identity.
function updateExtendedFields(
_id: string,
namespace: string,
options: UpdateExtendedFieldsOptions,
): Promise<UpdateExtendedFieldsResponse>;
ID of the entity to update.
Identifier for the app whose extended fields are being updated.
import { reservationLocations } from "@wix/table-reservations";
async function updateExtendedFields(id, namespace, options) {
const response = await reservationLocations.updateExtendedFields(
id,
namespace,
options,
);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.