With the Members About API, you can create and manage content for the "About" section in the member's profile. This section is initially blank, so members can write whatever they want to share. The section also supports rich content in this description, such as images, videos and GIFs, making it easy to create visually engaging descriptions.
The Members About API allows you to:
To use the MembersAbout API, install the @wix/members
package using npm or Yarn:
or
Then import { membersAbout }
from @wix/members
:
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Creates the "About" section content for a member.
function createMemberAbout(memberAbout: MemberAbout): Promise<MemberAbout>;
The "About" section content to create.
import { membersAbout } from "@wix/members";
async function createMemberAbout(memberAbout) {
const response = await membersAbout.createMemberAbout(memberAbout);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.