Python
import requests url = "https://{FUSION HOST}/api/links" response = requests.delete(url) print(response.json())
Delete one or more links matching the provided criteria. You can use an asterisk (*) for wildcard matching in the subject, object, and linkType fields.
subject
object
linkType
Delete only links with a matching subject.
Delete only links with a matching object.
Delete only links with a matching type.
Was this page helpful?