> 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: deleteMemberPhones(_id: string) # Method package: wixMembersV2 # Method menu location: wixMembersV2 --> members --> deleteMemberPhones # Method Link: https://dev.wix.com/docs/velo/apis/wix-members-v2/members/delete-member-phones.md # Method Description: Clears a member's phone numbers. The `deleteMemberPhones()` function clears the `phones` array under the `contact` property. > **Note:** > Only logged-in members can call this function without elevated permissions. > To call this function as a different identity, [elevated permissions](https://www.wix.com/velo/reference/wix-auth/elevate) are required. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Delete a member's phone numbers (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { members } from 'wix-members.v2'; /* Sample _id value: 'f32cbc51-a331-442b-86c2-2c664613e8b9' */ export const myDeletePhonesFunction = webMethod(Permissions.Anyone, (id) => { return members.deleteMemberPhones(id) .then((updatedMember) => { const phones = updatedMember.contact.phones; return updatedMember; }) .catch((error) => { console.error(error); }) }); /* Promise resolves to: * { * "_id": "f32cbc51-a331-442b-86c2-2c664613e8b9", * "_createdDate": "2021-08-02T23:14:42.000Z", * "_updatedDate": "2021-08-02T23:14:58.345Z", * "lastLoginDate": "2021-08-02T23:17:29.000Z", * "contactId": "f32cbc51-a331-442b-86c2-2c664613e8b9", * "loginEmail": "claude.morales@example.com", * "loginEmailVerified": true, * "status": "APPROVED", * "activityStatus": "ACTIVE", * "privacyStatus": "PUBLIC", * "contact": { * "firstName": "Claude", * "lastName": "Morales", * "phones": [], * "emails": [ * "claude.morales@example.com" * ], * "addresses": [ * { * "_id": "f0f4d905-488d-44db-9080-fc29078cfad5", * "addressLine": "9373 Park Avenue", * "addressLine2": "Berkshire", * "city": "Ely", * "subdivision": "GB-ENG", * "country": "GB", * "postalCode": "PD50 8EU" * } * ], * "customFields": {} * }, * "profile": { * "nickname": "Claude Morales", * "slug": "claudemorales" * } * } */ ``` ## Delete a member's phone numbers with elevated permissions (export from backend code) ```javascript import { members } from 'wix-members.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedDeleteMemberPhones = elevate(members.deleteMemberPhones); /* Sample _id value: '20aca292-e791-45b4-902f-7e7e22c96dd5' */ export const myDeleteMemberPhones = webMethod( Permissions.Anyone, async (_id) => { try { const member = await elevatedDeleteMemberPhones(_id); console.log('Deleted members phone: ', member); return member; } catch (error) { console.error(error); // Handle the error } } ); /* Promise resolves to: * * { * "_createdDate": "2024-02-28T10:42:31.000Z", * "_id": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "_updatedDate": "2024-02-28T10:42:30.891Z", * "activityStatus": "ACTIVE", * "contact": { * "contactId": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "firstName": "John", * "lastName": "Jonas", * "phones": [], * "emails": [], * "addresses": [], * "customFields": {} * }, * "contactId": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "lastLoginDate": "2024-02-28T10:42:31.000Z", * "loginEmail": "johnjonas@gmail.com", * "loginEmailVerified": false, * "privacyStatus": "PRIVATE", * "profile": { * "nickname": "johnjonas", * "slug": "johnjonas" * }, * "status": "APPROVED" * } * */ ``` ## Delete a member's phone numbers (dashboard page code) ```javascript import { members } from 'wix-members.v2'; /* Sample _id value: '20aca292-e791-45b4-902f-7e7e22c96dd5' */ export async function myDeleteMemberPhones(_id){ try { const member = await members.deleteMemberPhones(_id); console.log('Deleted members phone: ', member); return member; } catch (error) { console.error(error); // Handle the error } }; /* Promise resolves to: * * { * "_createdDate": "2024-02-28T10:42:31.000Z", * "_id": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "_updatedDate": "2024-02-28T10:42:30.891Z", * "activityStatus": "ACTIVE", * "contact": { * "contactId": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "firstName": "John", * "lastName": "Jonas", * "phones": [], * "emails": [], * "addresses": [], * "customFields": {} * }, * "contactId": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "lastLoginDate": "2024-02-28T10:42:31.000Z", * "loginEmail": "johnjonas@gmail.com", * "loginEmailVerified": false, * "privacyStatus": "PRIVATE", * "profile": { * "nickname": "johnjonas", * "slug": "johnjonas" * }, * "status": "APPROVED" * } * */ ``` ---