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

Aggregated Data

Endpoints to submit your own usage data and track its writing

Submit aggregated data

post

Uploads aggregated data required to calculate Popularity Score for assets.

There are 2 different ways to provide keys and type (see examples).

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Bodyobject · AggregatedData[]
toDatestring · date-timeOptional

End date of the 30-day window used for popularity calculation

Example: 2025-01-30T00:00:00Z
timePeriodstringOptionalExample: 30_DAYS
queryCountintegerOptionalExample: 1203
distinctUsersintegerOptional

Number of distinct users that have queried the asset

Example: 14
Responses
202

Submits a batch of data to be written (asynchronous endpoint).

application/json
post/aggregatedData/submit

Find jobs

get

Returns a list of jobs related to the data aggregation process.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Query parameters
statusstring · enumOptional

The status of the jobs to retrieve.

If not set, this filter will not be applied and everything will be returned.

Possible values:
offsetinteger · int32 · max: 2147483647Optional

The index of the first result to retrieve.

If not set (offset = 0), results will be retrieved starting from row 0.

Default: 0
limitinteger · int32 · min: 1 · max: 500Optional

The maximum number of results to retrieve.

If not set, the default limit (limit = 0) will be used. The maximum value for this parameter is 500.

Default: 10
Responses
200

List of jobs successfully retrieved. The report of the job will not be present.

application/json
get/aggregatedData/jobs

Find job by id

get

Returns a job related to the data aggregation process by its ID.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Path parameters
idstring · uuidRequired

The job ID to retrieve.

Example: b00db37d-282e-4ea9-86d4-5881660ba46a
Responses
200

Job successfully retrieved.

application/json
idstring · uuidRequired
createdBystring · uuidRequired
createdOnstring · date-timeRequired
startDatestring · date-timeRequired
endDatestring · date-timeOptional
statusstring · enumRequiredPossible values:
get/aggregatedData/jobs/{id}

Last updated

Was this helpful?