---
title: "How can I find all active IDEs for a subscription with multiple applications?"
date: "2025-05-08T07:32:24+00:00"
summary: "Discover active IDEs across multiple applications in your subscription using Cloud Platform API and UI. Simplify management."
image:
type: "article"
url: "/acquia-cloud-platform/add-ons/cloud-ide/help/68781-how-can-i-find-all-active-ides-subscription-multiple-applications"
id: "b094f882-7c0d-40fd-ae9b-1f55c3d5ee65"
---

The Cloud Platform UI has the concept of application relationships. This means multiple applications can be logically tied together to a parent subscription. Therefore, it might be complicated to determine the application(s) containing those IDEs.

Querying the Cloud Platform API can help with getting this information. Run the following command after replacing `<SubscriptionUUID>` with your subscription UUID:

    $ acli api:subscriptions:ide-list <SubscriptionUUID> | jq -r '.[] | "Label: " + .label + "\nOwner: " + ._embedded.owner.email +  "\nSubscription: " + ._links.application.href + "\n"'
                                            Label: myfirstide
                                            Owner: user1@company.com
                                            Subscription: https://cloud.acquia.com/api/applications/<applicationUUID1>
                                            Label: mysecondide
                                            Owner: user2@company.com
                                            Subscription: https://cloud.acquia.com/api/applications/<applicationUUID2>
                                            Label: mythirdide
                                            Owner: user1@company.com
                                            Subscription: https://cloud.acquia.com/api/applications/<applicationUUID3>

To view all applications related to your subscription UUID, visit the following URL: `https://cloud.acquia.com/a/subscriptions/<SubscriptionUUID>/views`