I actully figured it out. It appears that the actual usage is now much more straightforward. Apparently the API has been updated without the documentation changing ![]()
instead of the previous:
$w(‘#text15’).text = member.contactDetails.customFields[“customfields_contact_company”].value
you can now just use:
$w(‘#text15’).text = member.contactDetails.company
Maybe this is because I declared the option
currentMember.getMember({ fieldsets: [ 'FULL' ] })