Response
200 - application/json
successful operation
import requests
url = "https://{FUSION HOST}/api/apps"
response = requests.get(url)
print(response.json())[
{
"id": "movies",
"name": "Movies",
"description": "Search the movielens database.",
"dataUri": "/App-Tile-01-460x160.png",
"properties": {
"headerImageName": "headerImage1",
"tileColor": "apps-darkblue",
"previousCollectionId": "movies"
}
},
{
"id": "tech-pubs",
"name": "TechPubs",
"description": "Search the documentation.",
"dataUri": "/App-Tile-02-460x160.png",
"properties": {
"headerImageName": "headerImage2",
"tileColor": "apps-darkblue",
"previousCollectionId": "tech-pubs"
}
}
]Get the list of all existing Fusion apps and their configuration details.
import requests
url = "https://{FUSION HOST}/api/apps"
response = requests.get(url)
print(response.json())[
{
"id": "movies",
"name": "Movies",
"description": "Search the movielens database.",
"dataUri": "/App-Tile-01-460x160.png",
"properties": {
"headerImageName": "headerImage1",
"tileColor": "apps-darkblue",
"previousCollectionId": "movies"
}
},
{
"id": "tech-pubs",
"name": "TechPubs",
"description": "Search the documentation.",
"dataUri": "/App-Tile-02-460x160.png",
"properties": {
"headerImageName": "headerImage2",
"tileColor": "apps-darkblue",
"previousCollectionId": "tech-pubs"
}
}
]successful operation
Was this page helpful?