Cloud APIs
GroupsApi
groupInfo

groupInfo

Gets information about a user from their id.

Parameters

NameTypeDescription
groupIdGroupIdThe id of the group to get info about.

Example

const { data: groupInfo } = await GroupsApi.groupInfo({ groupId: 5850082 }); 

Example Data

{
  path: "groups/5850082",
  createTime: 2020-03-29T18:15:20.100Z,
  updateTime: 2024-05-12T13:17:41.639Z,
  id: "5850082",
  displayName: "MightyPart Games",
  description: "Hello World!",
  owner: "users/45348281",
  memberCount: 99,
  publicEntryAllowed: true,
  locked: false,
  verified: false,
} 

Endpoint

GET /v2/groups/{groupId}