For the complete documentation index, see llms.txt. This page is also available as Markdown.

Samples

Data sampling operations

Create a request to collect and cache sample data for an Edge data source

post

Creates a request to collect sample data from an Edge data source for the asset with the specified ID and temporarily makes it available in the Edge cache.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Path parameters
assetIdstring · uuidRequired

Asset identifier

Responses
202

Samples were successfully requested.
Returns job object which is running the fetching samples process and flag indicating if the new job was started to fetch samples or there was already one which existed before.

application/json

Represents the response returned when sample data is requested.

newJobbooleanOptional

Whether this is a newly created job or one that is in progress.

post/samples/{assetId}/request

Read sample data from the Collibra cloud repository or Edge cache

get

Reads the available sample data from the Collibra cloud repository or Edge cache depending on how the data is collected.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Path parameters
assetIdstring · uuidRequired

Asset identifier

Query parameters
columnLimitinteger · int32Optional

The maximum number of columns to retrieve. If not set (columnLimit = 0), the default column limit will be used. Maximum is set to 1500.

Default: 0
columnOffsetinteger · int32Optional

The index of the fist column to retrieve. If not set (columnOffset = 0), results will be retrieved starting from column 0.

Default: 0
Responses
200

Samples were successfully read. Returns the paginated list of columns with the list of the ordered samples that were fetched during request samples process.
Returns additional flags:
isDataAvailable flag indicating if any samples for any column are available within the response.
canRequestAdditionalData flag indicating if the requestSamples API can be called to query the target database for the additional samples.

application/json

Represents the response returned when sample data is read.

dataAvailablebooleanOptional

Whether any sample data is available for the columns in the response.

canRequestAdditionalDatabooleanOptional

Whether the requestSamples API can be called to query the target database for sample data.

get/samples/{assetId}

Last updated

Was this helpful?