Delete a data model
import requests
url = "https://{FUSION HOST}/api/data-models/{id}"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)This response has no body data.Delete a data model
Remove a data model from the system by its ID. Use /data-models to get the list of data model IDs.
DELETE
/
data-models
/
{id}
Delete a data model
import requests
url = "https://{FUSION HOST}/api/data-models/{id}"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)This response has no body data.Headers
An optional tag to match.
Path Parameters
The data model ID.
Body
application/json
For supplying additional request parameters (such as relatedObjectIds) via request body instead of as request parameters. Use this if the URL is getting too long.
The body is of type object.
Response
200 - undefined
Was this page helpful?
⌘I