API – Get Members of a Group

action – groupusers

To get a list of users in a Group, pass action groupusers and either the group’s record ID in recordid or the group’s name in search. The Users, if any, will be output as a standard record list i.e. as an array in records.

Sample Request

{ "account": *** your account id ***, "apikey": "*** your api key ***", "action": "groupusers", "recordid": 123 }

Sample Response

{ "success": true, "recordtype": "person", "count": 1, "total": 1, "records": [ { "recordurl": "person/12345", "recordid": 12345, "recordtype": "person", "name": "Robert Smith" } ] }

Get Started