curl --request GET \
--url https://{FUSION HOST}/api/data-models/{id}/fields
[
{
"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.
curl --request GET \
--url https://{FUSION HOST}/api/data-models/{id}/fields
[
{
"name": "<string>",
"value": "<string>",
"description": "<string>"
}
]
Data model ID.
successful operation
The response is of type object[]
.
Was this page helpful?