Below is a list of attributes available for team member.
Example - Get all team member for one role
In the example below, we will request to get all team members with the role of analyst
.
curl -X GET https://api.complycube.com/v1/teamMembers?role=analyst \
-H 'Authorization: <YOUR_API_KEY>'
from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR API KEY>')
team_members = cc_api.teammembers.list(role='administrator')
use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR API KEY>');
$client = $ccapi->teamMembers()->list(['firstName' => 'John']);