Python
import requests url = "https://{FUSION HOST}/api/apps/{id}" response = requests.get(url) print(response.json())
{ "id": "<string>" }
Fetch an app by its ID. The response is the app’s complete configuration in JSON.
The app ID.
successful operation
Was this page helpful?