Company Group Members

Get group members

get

Retrieves the profiles of members belonging to a specific group.

Body
group_idintegerRequired

The ID of the group to retrieve members for.

Example: 257
limitintegerRequired

The maximum number of profiles to retrieve.

Example: 10
pageintegerRequired

The page number to retrieve.

Example: 1
Responses
200

Group members retrieved successfully

application/json
get
/company/group/members
200

Group members retrieved successfully

Add members to a group

post

Adds one or more profiles to a specified group.

Body
group_idintegerRequired

The ID of the group to which profiles will be added.

Example: 257
profile_idsinteger[]Required

An array of profile IDs to add to the group.

Example: 21922
company_idintegerOptional

The ID of the company associated with the group.

Example: 385
Responses
200

Member addition success response

application/json
post
/company/group/members
200

Member addition success response

Remove members from a group

delete

Removes one or more profiles from a specified group.

Body
group_idintegerRequired

The ID of the group from which profiles will be removed.

Example: 257
profile_idsinteger[]Required

An array of profile IDs to remove from the group.

Example: 21922
Responses
200

Member removal success response

application/json
delete
/company/group/members
200

Member removal success response

get

Searches for members within a specific group based on a query string.

Body
group_idintegerRequired

The ID of the group to search members within.

Example: 257
querystringRequired

The query string to search for members.

Example: John
company_idintegerRequired

The ID of the company associated with the group.

Example: 385
Responses
200

Group members search results

application/json
get
/company/group/members/search
200

Group members search results

Add profiles to a group by automation mappings

post

Adds profiles to a group based on automation mappings.

Body
group_idintegerRequired

The ID of the group.

Example: 257
company_idintegerRequired

The ID of the company.

Example: 385
automation_mappingsobjectRequired

An object containing automation mappings to filter profiles.

Example: {"department":"IT","job":"Engineer"}
Responses
200

Profiles addition success response

application/json
post
/company/group/profiles
200

Profiles addition success response

Last updated