Hi,
Yesterday I was running my script and it was returning membership_dues appropriately, then in the evening the Meetup API results no longer included this value. Today I performed fresh logout/login (because my authorization had expired this morning) and ran my script and it still isn't seeing the membership_dues results from Meetup. Has there been a change to the Meetup results yesterday?
My PHP code (note I've hardcoded the values here to make sure what I am getting back are members who have paid dues):
$connection = new MeetupOAuth2Connection($group['MeetupAccessToken']);
$obj = new MeetupProfiles($connection);
$profiles = $obj->getProfiles(array('group_id' => '1993281', 'member_id' => '50136782,54476992,51365532,49125382,44098642,10245879,29471552,26932772,10149733', 'fields' => 'membership_dues'));
The profiles returned are fine, and contain such information as created, role and status, but no membership_dues!
Dominique