{ "opencollection": "1.0.0", "info": { "name": "Seismic Analytics Content Analytics Groups API", "version": "2.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Groups", "type": "folder" }, "items": [ { "info": { "name": "Get User Groups", "type": "http" }, "http": { "method": "GET", "url": "https://api.seismic.com/integration/v2/users/:userId/groups", "params": [ { "name": "userId", "value": "", "type": "path", "description": "Unique identifier of the user." } ] }, "docs": "Retrieves the groups that a specific user belongs to." }, { "info": { "name": "Set User Group Memberships", "type": "http" }, "http": { "method": "PUT", "url": "https://api.seismic.com/integration/v2/users/:userId/groups", "params": [ { "name": "userId", "value": "", "type": "path", "description": "Unique identifier of the user." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Replaces the user's group memberships with the specified set of groups." }, { "info": { "name": "List Groups", "type": "http" }, "http": { "method": "GET", "url": "https://api.seismic.com/integration/v2/groups", "params": [ { "name": "query", "value": "", "type": "query", "description": "Search query to filter groups by name." }, { "name": "parentId", "value": "", "type": "query", "description": "Filter by parent group ID for hierarchical groups." }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip for pagination." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return." } ] }, "docs": "Retrieves a list of user groups in the Seismic platform." }, { "info": { "name": "Create a Group", "type": "http" }, "http": { "method": "POST", "url": "https://api.seismic.com/integration/v2/groups", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new user group in the Seismic platform." }, { "info": { "name": "Get a Group", "type": "http" }, "http": { "method": "GET", "url": "https://api.seismic.com/integration/v2/groups/:groupId", "params": [ { "name": "groupId", "value": "", "type": "path", "description": "Unique identifier of the group." } ] }, "docs": "Retrieves details of a specific group by its ID." }, { "info": { "name": "Update a Group", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.seismic.com/integration/v2/groups/:groupId", "params": [ { "name": "groupId", "value": "", "type": "path", "description": "Unique identifier of the group." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the name or other properties of a specific group." }, { "info": { "name": "Delete a Group", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.seismic.com/integration/v2/groups/:groupId", "params": [ { "name": "groupId", "value": "", "type": "path", "description": "Unique identifier of the group." } ] }, "docs": "Deletes a specific group from the Seismic platform." }, { "info": { "name": "List Group Members", "type": "http" }, "http": { "method": "GET", "url": "https://api.seismic.com/integration/v2/groups/:groupId/members", "params": [ { "name": "groupId", "value": "", "type": "path", "description": "Unique identifier of the group." }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip for pagination." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return." } ] }, "docs": "Retrieves a list of users who are members of a specific group." }, { "info": { "name": "Add a Member to a Group", "type": "http" }, "http": { "method": "POST", "url": "https://api.seismic.com/integration/v2/groups/:groupId/members", "params": [ { "name": "groupId", "value": "", "type": "path", "description": "Unique identifier of the group." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds a user as a member of a specific group." }, { "info": { "name": "Remove a Member from a Group", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.seismic.com/integration/v2/groups/:groupId/members/:userId", "params": [ { "name": "groupId", "value": "", "type": "path", "description": "Unique identifier of the group." }, { "name": "userId", "value": "", "type": "path", "description": "Unique identifier of the user." } ] }, "docs": "Removes a user from a specific group." } ] } ], "bundled": true }