SnykGroupAppInstall

Model for Snyk Group App Installs.

  1. Overview

Overview

This model represents installed Snyk Apps at the group level. Group app installs allow apps to access data across all organizations within a group.

Uses the Snyk v2 REST API endpoint: /groups/{group_id}/apps/installs

import clearskies
from clearskies_snyk.models import SnykGroupAppInstall


def my_handler(snyk_group_app_install: SnykGroupAppInstall):
    # Fetch all app installs for a group
    installs = snyk_group_app_install.where("group_id=group-id-123")
    for install in installs:
        print(f"Install: {install.id} - App: {install.app_id}")