Introduction

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:

Terminology

  • Member Profile: A personalized space within the Members Area where a member's details and activity are displayed. The profile typically includes basic information (for example, name, profile picture), contact details, and additional sections such as "about," where members can share more about themselves.
  • About: A customizable section in the member's profile where they can share personal or professional information. This section can include plain text, rich content like images, videos, and GIFs, or a combination of these elements to help express the member’s personality, interests, or background.
  • Rich Content: Digital content that includes elements beyond plain text, such as images, videos, and interactive components.
Did this help?

Setup

@wix/members

To use the MembersAbout API, install the @wix/members package using npm or Yarn:

Copy

or

Copy

Then import { membersAbout } from @wix/members:

Copy
Did this help?

createMemberAbout( )


Developer Preview

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.

Permissions
SCOPE.DC-MEMBERS.MANAGE-ABOUT
Learn more about app permissions.
Method Declaration
Copy
function createMemberAbout(memberAbout: MemberAbout): Promise<MemberAbout>;
Method Parameters
memberAboutMemberAboutRequired

The "About" section content to create.

Returns
Return Type:Promise<MemberAbout>
JavaScript
import { membersAbout } from "@wix/members"; async function createMemberAbout(memberAbout) { const response = await membersAbout.createMemberAbout(memberAbout); }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?