Sign in

Add members to group

documented

Add users to a group as members.

GET /api/add_members_to_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: This command is based on CYPHER Learning API 1.0 documentation, which lists add_members_to_group(group_id, user_ids) as a function for adding members to a group and specifies that array parameters should be passed with the XXX[] syntax (e.g., user_ids[]). The exact site host is customer-specific, so this template uses a base URL variable. See sources: API 1.0 functions including add_members_to_group and the guidance on array parameters. ([cypherlearning.zohodesk.com](https://cypherlearning.zohodesk.com/portal/pt/kb/articles/developers-api?utm_source=openai))

npx -y keychains@latest curl "https://{{base_url}}/api/add_members_to_group?group_id={{group_id}}&user_ids[]={{user_id_1}}&user_ids[]={{user_id_2}}" \
  -X GET \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "X-API-Key: {{CYPHERLEARNING_API_KEY}}" \
  -H "Accept: application/json"
Add members to group · CYPHER Learning · OpenIntegrations