SnykOrgApp
Model for Snyk Organization Apps.
Overview
This model represents Snyk Apps registered within an organization. Apps are integrations that can access Snyk APIs on behalf of users.
Uses the Snyk v2 REST API endpoint: /orgs/{org_id}/apps
import clearskies
from clearskies_snyk.models import SnykOrgApp
def my_handler(snyk_org_app: SnykOrgApp):
# Fetch all apps for an org
apps = snyk_org_app.where("org_id=org-id-123")
for app in apps:
print(f"App: {app.name} - Client ID: {app.client_id}")