POST

Query Member Abouts


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Retrieves a list of content from the "About" sections, given the provided paging, filtering, and sorting. Query Member Abouts runs with these defaults, which you can override:

  • createdDate is sorted in ASC order
  • paging.limit is 100
  • paging.offset is 0

For field support for filters and sorting, see Member About: Supported Filters and Sorting. To learn about working with Query endpoints, see API Query Language

Permissions
Manage Members and Contacts - all permissions
Read Members and Contacts - all read permissions
Manage Members
Read Members
Learn more about app permissions.
Endpoint
POST
https://www.wixapis.com/members/v2/abouts/query

Body Params
queryQuery

Query options. See API Query Language for more details.

Response Object
memberAboutsArray <MemberAbout>

The retrieved content from the "About" sections.


metadataMetadata

Metadata for the paginated results.

Query Member "About" Sections Content
Request
cURL
curl -X POST \ https://www.wixapis.com/members/v2/abouts/query \ -H 'Content-Type: application/json;charset=UTF-8' \ -H 'Authorization: <AUTH>' -d '{ "query": { "filter": { "memberId": "9e4f34b3-ebb8-49ee-a342-057d7e70cf5d" } } }'
Response
JSON
{ "memberAbouts": [ { "id": "e18779d5-956d-49c7-93da-8fa9f64704ce", "revision": "1", "memberId": "9e4f34b3-ebb8-49ee-a342-057d7e70cf5d", "content": { "nodes": [ { "type": "HEADING", "id": "foo", "nodes": [ { "type": "TEXT", "id": "", "textData": { "text": "About Me" } } ], "headingData": { "level": 2, "textStyle": { "textAlignment": "AUTO" } } }, { "type": "PARAGRAPH", "id": "lxr936" }, { "type": "PARAGRAPH", "id": "j7tdj13", "nodes": [ { "type": "TEXT", "id": "", "textData": { "text": "Hi, I'm Sarah! I'm a graphic designer and nature enthusiast. I love hiking, photography, and discovering new coffee shops. Always happy to connect with like-minded people!" } } ] } ] } } ], "metadata": { "count": 1, "cursors": { "next": null, "prev": null }, "hasNext": false, "total": null } }
Errors

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

Did this help?