Python
import requests url = "https://{FUSION HOST}/api/data-models/{id}" response = requests.get(url) print(response.json())
{ "id": "<string>" }
Fetch a data model by its ID. Use /data-models to get the list of data model IDs.
/data-models
The data model ID.
successful operation
Was this page helpful?