Open the Dashboard

How to directly access an asset through your dashboard.

Read time 1 minutes
Last updated 9 months ago

How do I...?

Open the Dashboard to an asset details page

The open_dashboard_to_asset_details_page method directly opens the dashboard to the details page of a specified asset.

    unity_cloud.initialize()
    unity_cloud.interop.open_browser_to_asset_details(
        org_id = "012345678912",
        project_id = "1234abcd-ab12-cd34-ef56-123456abcdef",
        asset_id = "0123456789abcdefghijklmn",
        asset_version = "1234abcd-ab12-cd34-ef56-123456abcdef"
    )

You can use this method after creating or updating an asset to access its details in the dashboard and edit the asset information.

Authentication is not necessary for this method, as authentication arguments are dynamically fetched through the assets module.