@wildix/wms-permissions-client > GetViewCallRecordingsOfUsersGroupsCommand
GetViewCallRecordingsOfUsersGroupsCommand class
Gets a list of groups that are allowed to see the analytics.
Signature:
export declare class GetViewCallRecordingsOfUsersGroupsCommand extends GetViewCallRecordingsOfUsersGroupsCommand_base 
Extends: GetViewCallRecordingsOfUsersGroupsCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WmsPermissionsClient, GetViewCallRecordingsOfUsersGroupsCommand } from "@wildix/wms-permissions-client"; // ES Modules import
// const { WmsPermissionsClient, GetViewCallRecordingsOfUsersGroupsCommand } = require("@wildix/wms-permissions-client"); // CommonJS import
const client = new WmsPermissionsClient(config);
const input = { // GetViewCallRecordingsOfUsersGroupsInput
  domain: "STRING_VALUE",
  port: Number("int"),
  identity: { // Identity
    extension: "STRING_VALUE",
    email: "STRING_VALUE",
    userId: "STRING_VALUE",
    groupId: "STRING_VALUE",
  },
};
const command = new GetViewCallRecordingsOfUsersGroupsCommand(input);
const response = await client.send(command);
// { // GetViewCallRecordingsOfUsersGroupsOutput
//   groups: [ // GroupsIdsList // required
//     "STRING_VALUE",
//   ],
//   everybody: true || false, // required
// };