Skip to content
Docs

Groups

Groups

List groups
zones.groups.list(strzone_id, GroupListParams**kwargs) -> GroupListResponse
GET/zones/{zoneId}/groups
Create group
zones.groups.create(strzone_id, GroupCreateParams**kwargs) -> Group
POST/zones/{zoneId}/groups
Get group
zones.groups.retrieve(strgroup_id, GroupRetrieveParams**kwargs) -> Group
GET/zones/{zoneId}/groups/{groupId}
Update group
zones.groups.update(strgroup_id, GroupUpdateParams**kwargs) -> Group
PATCH/zones/{zoneId}/groups/{groupId}
Delete group
zones.groups.delete(strgroup_id, GroupDeleteParams**kwargs)
DELETE/zones/{zoneId}/groups/{groupId}
ModelsExpand Collapse
class Group:

A zone-scoped group of users, assignable to roles and usable in policies. Roles assigned to a group are inherited by its members. external is false for groups managed in Keycard and true for groups synced from an external directory.

id: str

Unique identifier of the group

created_at: datetime

Entity creation timestamp

formatdate-time
external: bool

Whether the group is synced from an external directory. When true the group is directory-owned and its membership is read-only; when false it is managed in Keycard. Read-only: set by external sync, never by the caller.

identifier: str

User-specified identifier, unique within the zone. Automatically assigned for groups from an external directory.

name: str

Human-readable group name

organization_id: str

Organization this group belongs to

updated_at: datetime

Entity update timestamp

formatdate-time
zone_id: str

Zone this group belongs to

member_count: Optional[int]

Number of users in the group. Included only when requested via expand[]=member_count (group get or list).

roles: Optional[List[str]]

Identifiers of the roles assigned to the group; members inherit them. Deduped across scopes. Included only when requested via expand[]=roles (group get or list).

class GroupCreate:

Schema for creating a group in Keycard. Groups synced from an external directory are created by that directory, not through this endpoint.

name: str

Human-readable group name

minLength1
maxLength255
formatsafe-text
identifier: Optional[str]

User-specified identifier, unique within the zone. Derived from the name when omitted (a suffix is appended if it collides).

minLength1
maxLength2048
formatsafe-text
class GroupUpdate:

Schema for updating a group.

identifier: Optional[str]

User-specified identifier, unique within the zone.

minLength1
maxLength2048
formatsafe-text
name: Optional[str]

Human-readable group name

minLength1
maxLength255
formatsafe-text

GroupsMembers

List group members
zones.groups.members.list(strgroup_id, MemberListParams**kwargs) -> MemberListResponse
GET/zones/{zoneId}/groups/{groupId}/members
Add group member
zones.groups.members.add(strgroup_id, MemberAddParams**kwargs) -> GroupMember
POST/zones/{zoneId}/groups/{groupId}/members
Remove group member
zones.groups.members.remove(struser_id, MemberRemoveParams**kwargs)
DELETE/zones/{zoneId}/groups/{groupId}/members/{userId}
ModelsExpand Collapse
class GroupMember:

A user's membership in a group

created_at: datetime

Entity creation timestamp

formatdate-time
user_id: str

ID of the user

user: Optional[User]

An authenticated user entity

id: str

Unique identifier of the user

created_at: datetime

Entity creation timestamp

formatdate-time
email: str

Email address of the user

formatemail
email_verified: bool

Whether the email address has been verified

identifier: str

Zone-scoped user identifier. Defaults to the user's Keycard ID. When the provider has user_identifier_claim configured, the value is set from that claim at user creation time.

organization_id: str

Organization that owns this user

status: Literal["active", "disabled"]

Status of the user. Disabled users cannot authenticate.

Accepts one of the following:
"active"
"disabled"
updated_at: datetime

Entity update timestamp

formatdate-time
zone_id: str

Zone this user belongs to

authenticated_at: Optional[str]

Date when the user was last authenticated

credentials: Optional[List[Credential]]

Authentication credentials for this user, each carrying its identity provider for federation credentials. Populated only when expand[]=credentials is set on the listing endpoint.

Accepts one of the following:
class CredentialIamUserCredentialFederation:

Federation credential: the user authenticates through an identity provider.

created_at: datetime

Entity creation timestamp

formatdate-time
provider_id: Optional[str]

ID of the identity provider backing this credential. null when the source provider has been deleted.

type: Literal["federation"]
updated_at: datetime

Entity update timestamp

formatdate-time
issuer: Optional[str]

Issuer identifier of the identity provider.

provider: Optional[Provider]

A Provider is a system that supplies access to Resources and allows actors (Users or Applications) to authenticate.

id: str

Unique identifier of the provider

created_at: datetime

Entity creation timestamp

formatdate-time
identifier: str

User specified identifier, unique within the zone

minLength1
maxLength2048
name: str

Human-readable name

minLength1
maxLength255
organization_id: str

Organization that owns this provider

owner_type: Literal["platform", "customer"]

Who owns this provider. Platform-owned providers cannot be modified via API.

Accepts one of the following:
"platform"
"customer"
slug: str

URL-safe identifier, unique within the zone

minLength1
maxLength63
updated_at: datetime

Entity update timestamp

formatdate-time
zone_id: str

Zone this provider belongs to

client_id: Optional[str]

OAuth 2.0 client identifier

client_secret_set: Optional[bool]

Indicates whether a client secret is configured

description: Optional[str]

Human-readable description

maxLength2048
metadata: Optional[Metadata]

Provider metadata

icon_url: Optional[str]

Icon URL

formaturi
maxLength2048
protocols: Optional[Protocols]

Protocol-specific configuration

oauth2: Optional[ProtocolsOauth2]

OAuth 2.0 protocol configuration

issuer: str

OIDC issuer URL used for discovery and token validation.

formaturi
authorization_endpoint: Optional[str]
formaturi
authorization_parameters: Optional[Dict[str, str]]

Custom query parameters appended to authorization redirect URLs. Use for non-standard providers (e.g. Google prompt=consent, access_type=offline).

authorization_resource_enabled: Optional[bool]

Whether to include the resource parameter in authorization requests.

authorization_resource_parameter: Optional[str]

The resource parameter value to include in authorization requests. Defaults to "resource" when authorization_resource_enabled is true.

code_challenge_methods_supported: Optional[List[str]]
jwks_uri: Optional[str]
formaturi
registration_endpoint: Optional[str]
formaturi
scope_parameter: Optional[str]

The query parameter name for scopes in authorization requests. Defaults to "scope". Slack v2 uses "user_scope".

scope_separator: Optional[str]

The separator character for scope values. Defaults to " " (space). Slack v2 uses ",".

scopes_supported: Optional[List[str]]
token_endpoint: Optional[str]
formaturi
token_response_access_token_pointer: Optional[str]

Dot-separated path to the access token in the token response body. Defaults to "access_token". Slack v2 uses "authed_user.access_token".

openid: Optional[ProtocolsOpenid]

OpenID Connect protocol configuration

external_id_claim: Optional[str]

Name of the OIDC claim carrying the stable external id used to correlate logins with externally provisioned (SCIM) users. Defaults to "sub". Set to "oid" for Entra, whose pairwise "sub" differs from the SCIM externalId.

scopes: Optional[List[str]]

Additional OIDC scopes to request from this provider during authentication (e.g. "groups"). Merged with the default scopes (openid, profile, email).

single_logout_enabled: Optional[bool]

When true, logging out of the zone propagates the logout to this provider's end_session_endpoint (RP-initiated logout). Defaults to false.

user_identifier_claim: Optional[str]

Name of a top-level string claim in this provider's ID Token to use as the user identifier on user creation. When not set, the user's Keycard ID is used.

userinfo_endpoint: Optional[str]
formaturi
type: Optional[Literal["external", "keycard-vault", "keycard-sts"]]
Accepts one of the following:
"external"
"keycard-vault"
"keycard-sts"
subject: Optional[str]

Subject identifier from the identity provider.

class CredentialIamUserCredentialPassword:

Password credential: the user authenticates with email and password. The email lives on the user.

created_at: datetime

Entity creation timestamp

formatdate-time
type: Literal["password"]
updated_at: datetime

Entity update timestamp

formatdate-time
grant_count: Optional[int]

Delegated-grant count for this user. Populated only when expand[]=grant_count is set on the listing endpoint.

minimum0
groups: Optional[List[Group]]

Groups this user belongs to within the zone. Populated only when expand[]=groups is set on the listing endpoint.

id: str

Unique identifier of the group

identifier: str

Zone-unique slug that policy rules match on.

name: str

Human-readable group name

issuer: Optional[str]

Issuer identifier of the identity provider

provider_id: Optional[str]

Reference to the identity provider. This field is undefined when the source identity provider is deleted but the user is not deleted.

role_assignments: Optional[List[RoleAssignment]]

Role grants for this user within the zone. Populated only when expand[]=role-assignments is set on the listing endpoint.

role_id: str

ID of the assigned role

role_identifier: str

Role identifier: a lowercase slug (letters and digits separated by single hyphens or underscores), unique per owner type within a zone. Role identifiers surface in policy evaluation, so the slug restriction keeps them unambiguous in policy text.

minLength1
maxLength255
role_owner_type: Literal["platform", "customer"]

Owner type of the granted role. Disambiguates roles that share an identifier across owner types.

Accepts one of the following:
"platform"
"customer"
scope: Optional[RoleAssignmentScope]

The resource this grant is scoped to, or null when the grant is unscoped (applies to the owning zone itself).

id: str

The ID of the scoped resource.

type: str

The kind of resource this grant is scoped to (e.g. zone).

source: Literal["user", "group"]

The principal that holds this grant: user when assigned directly to the user, or group when inherited through group membership.

Accepts one of the following:
"user"
"group"
group_id: Optional[str]

ID of the group this grant is inherited from. Present only when source is group.

session_count: Optional[int]

Session count for this user. Populated only when expand[]=session_count is set on the listing endpoint.

minimum0
subject: Optional[str]

Subject identifier from the identity provider

class GroupMemberCreate:

Schema for adding a user to a group

user_id: str

ID of the user to add to the group

GroupsRoles

List group role assignments
zones.groups.roles.list(strgroup_id, RoleListParams**kwargs) -> RoleListResponse
GET/zones/{zoneId}/groups/{groupId}/roles
Assign role to group
zones.groups.roles.add(strgroup_id, RoleAddParams**kwargs) -> RoleAssignment
POST/zones/{zoneId}/groups/{groupId}/roles
Revoke role from group
zones.groups.roles.remove(strrole_id, RoleRemoveParams**kwargs)
DELETE/zones/{zoneId}/groups/{groupId}/roles/{roleId}