> 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: renameExtendedField(key: string, displayName: string, options: AuthOptions) # Method package: wixCrmBackend # Method menu location: wixCrmBackend --> Contacts --> renameExtendedField # Method Link: https://dev.wix.com/docs/velo/apis/wix-crm-backend/contacts/rename-extended-field.md # Method Description: Renames an extended field. The `renameExtendedField()` function returns a Promise that resolves when the specified extended field's display name is changed. > **Note:** > Only visitors with > **Manage Contacts** [permissions](https://www.wix.com/my-account/site-selector/?buttonText=Select%20Site&title=Select%20a%20Site&autoSelectOnSingleSite=true&actionUrl=https:%2F%2Fwww.wix.com%2Fdashboard%2F%7B%7BmetaSiteId%7D%7D%2Froles-and-permissions) > can rename extended fields. > You can override the permissions by setting the `suppressAuth` option to `true`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Rename an extended field ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { contacts } from 'wix-crm-backend'; export const myRenameExtendedFieldFunction = webMethod(Permissions.Anyone, () => { const fieldKey = "custom.event-venue"; const displayName = "Event Location"; const options = { suppressAuth: false }; return contacts.renameExtendedField(fieldKey, displayName, options) .then((renamedExtendedField) => { return renamedExtendedField; }) .catch((error) => { console.error(error); }); }); /* Promise resolves to: * * { * "_createdDate": "2021-01-19T22:06:34Z", * "_updatedDate": "2021-01-20T18:54:14Z" * "namespace": "custom", * "key": "custom.event-venue", * "displayName": "Event Location", * "dataType": "TEXT", * "fieldType": "USER_DEFINED", * } */ ``` ---