SnykSelfApp

Model for Snyk Self Apps.

  1. Overview

Overview

This model represents apps installed by the current user. Uses the Snyk v2 REST API endpoint: /self/apps

import clearskies
from clearskies_snyk.models import SnykSelfApp


def my_handler(snyk_self_app: SnykSelfApp):
    # List apps installed by the current user
    apps = snyk_self_app
    for app in apps:
        print(f"App: {app.name}")