List matching connector configuration suggestions
import requests
url = "https://{FUSION HOST}/api/suggestions/datasources"
response = requests.get(url)
print(response.text)[
{
"type": "<string>",
"title": "<string>",
"config": {},
"valid": true,
"errors": [
{
"field": "<string>",
"value": {},
"code": "<string>",
"message": "<string>"
}
],
"installed": true
}
]List matching connector configuration suggestions
Get a list of connector types that can handle the provided input value.
GET
/
suggestions
/
datasources
List matching connector configuration suggestions
import requests
url = "https://{FUSION HOST}/api/suggestions/datasources"
response = requests.get(url)
print(response.text)[
{
"type": "<string>",
"title": "<string>",
"config": {},
"valid": true,
"errors": [
{
"field": "<string>",
"value": {},
"code": "<string>",
"message": "<string>"
}
],
"installed": true
}
]Query Parameters
The input value to evaluate. It can be a URL, file path, FTP address, or similar resource identifier.
Was this page helpful?
⌘I