Skip to main content
GET
/
connectors
/
datasources
/
{id}
/
sample
Run a sample job
import requests

url = "https://{FUSION HOST}/api/connectors/datasources/{id}/sample"

response = requests.get(url)

print(response.text)
[
  {}
]

Path Parameters

id
string
required

The datasource configuration ID.

Query Parameters

limit
integer<int32>

The maximum number of results to return.

waitSec
integer<int32>

A specific amount of time to run the sample, in seconds.

refresh
boolean

Indicates if the sampling cache should be cleared.

maxFieldLength
integer<int32>
default:1024

The maximum length of fields returned in the response.

excludeBinaryFields
boolean

Indicates if fields with a byte array as value should be excluded or not.

Response

OK