> 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 # DeleteMemberAbout # Package: memberManagement # Namespace: MembersAbout # Method link: https://dev.wix.com/docs/api-reference/crm/members-contacts/members/member-management/members-about-v2/delete-member-about.md ## Permission Scopes: SCOPE.DC-MEMBERS.MANAGE-ABOUT: SCOPE.DC-MEMBERS.MANAGE-ABOUT ## Introduction Deletes the "About" section content for a member. --- ## REST API ### Schema ``` Method: deleteMemberAbout Description: Deletes the "About" section content for a member. URL: https://www.wixapis.com/members/v2/abouts/{id} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: id Method parameters: param name: id | type: none | required: true Return type: DeleteMemberAboutResponse EMPTY-OBJECT {} ``` ### Examples ### Delete the "Member" About Section Content ```curl curl -X DELETE \ https://www.wixapis.com/members/v2/abouts/e901b292-70f0-4a20-8aaf-e06cd5dc5ca2 \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.memberManagement.MembersAbout.deleteMemberAbout(_id) Description: Deletes the "About" section content for a member. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: _id Method parameters: param name: _id | type: string | description: GUID of the "About" section content to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteMemberAbout ```javascript import { membersAbout } from '@wix/members'; async function deleteMemberAbout(_id) { const response = await membersAbout.deleteMemberAbout(_id); }; ``` ### deleteMemberAbout (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { membersAbout } from '@wix/members'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { membersAbout }, // Include the auth strategy and host as relevant }); async function deleteMemberAbout(_id) { const response = await myWixClient.membersAbout.deleteMemberAbout(_id); }; ``` ---