Python
import requests url = "https://{FUSION HOST}/api/data-models/{id}/fields" response = requests.get(url) print(response.json())
[ { "name": "<string>", "value": "<string>", "description": "<string>" } ]
Get the list of declared fields for a specified data model. Use /data-models to get the list of data model IDs.
/data-models
Data model ID.
successful operation
Was this page helpful?