CreateAccessGroupResponseBody

August 21, 2025 ยท View on GitHub

Example Usage

import { CreateAccessGroupResponseBody } from "@vercel/sdk/models/createaccessgroupop.js";

let value: CreateAccessGroupResponseBody = {
  entitlements: [],
  membersCount: 6736.32,
  projectsCount: 8507.33,
  name: "my-access-group",
  createdAt: "1588720733602",
  teamId: "team_123a6c5209bc3778245d011443644c8d27dc2c50",
  updatedAt: "1588720733602",
  accessGroupId: "ag_123a6c5209bc3778245d011443644c8d27dc2c50",
  teamRoles: [
    "DEVELOPER",
    "BILLING",
  ],
  teamPermissions: [
    "CreateProject",
  ],
};

Fields

FieldTypeRequiredDescriptionExample
entitlementsmodels.CreateAccessGroupEntitlements[]:heavy_check_mark:N/A
membersCountnumber:heavy_check_mark:N/A
projectsCountnumber:heavy_check_mark:N/A
namestring:heavy_check_mark:The name of this access group.my-access-group
createdAtstring:heavy_check_mark:Timestamp in milliseconds when the access group was created.1588720733602
teamIdstring:heavy_check_mark:ID of the team that this access group belongs to.team_123a6c5209bc3778245d011443644c8d27dc2c50
updatedAtstring:heavy_check_mark:Timestamp in milliseconds when the access group was last updated.1588720733602
accessGroupIdstring:heavy_check_mark:ID of the access group.ag_123a6c5209bc3778245d011443644c8d27dc2c50
teamRolesstring[]:heavy_minus_sign:Roles that the team has in the access group.[
"DEVELOPER",
"BILLING"
]
teamPermissionsstring[]:heavy_minus_sign:Permissions that the team has in the access group.[
"CreateProject"
]