Sign in

Remove members from group

documented

Remove users from a group.

GET /api/remove_members_from_groupGroupsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

Note: The CYPHER Learning API 1.0 docs show endpoints like /api/<function> on your site's Matrix domain (e.g., https://yourbusiness.matrix.com/api/remove_members_from_group) and authentication via an API key passed as api_key in the query string. The command below follows that pattern with Keychains placeholders. ([cypherlearning.zohodesk.com](https://cypherlearning.zohodesk.com/portal/pt/kb/articles/developers-api))

npx -y keychains@latest curl "https://{{$site_domain}}/api/remove_members_from_group?group_id={{$group_id}}&user_ids[]={{$user_id_1}}&user_ids[]={{$user_id_2}}&api_version={{$api_version}}&api_key={{CYPHERLEARNING_API_KEY}}" \
  -X GET \
  -H "Accept: application/json" \
  -H "Content-Type: application/json"
Remove members from group · CYPHER Learning · OpenIntegrations