Python
import requests url = "https://{FUSION HOST}/api/data-models" response = requests.get(url) print(response.json())
[ { "id": "<string>" } ]
Get the list of existing data models.
successful operation
Was this page helpful?