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

Navigation Statistics

Find most viewed assets.

get

Returns the most viewed assets by all users, with navigation-related info.

Authorizations
AuthorizationstringRequired
Query parameters
offsetinteger · int32Optional

The first result to retrieve. If not set (offset = 0), results will be retrieved starting from row 0.

Default: 0
limitinteger · int32Optional

The maximum number of results to retrieve. If not set (limit = 0), the default limit will be used. The maximum allowed limit is 1000.

Default: 0
countLimitinteger · int32Optional

Allows to limit the number of elements that will be counted. -1 will count everything and 0 will cause the count to be skipped

Default: -1
periodinteger · int64Optional

The time span for which most viewed assets should be found. This time span must be expressed in milliseconds.
For instance, to get most viewed assets for last 24 hours, period would be 86400000.
If it's unset (period = 0) looks for all time most viewed assets.

Default: 0
isGuestExcludedbooleanOptional

Whether guest visits should be excluded from result.

Default: false
Responses
200

Paged response with found navigation statistics ordered by number of views descending. By default, the result contains up to 1000 navigation statistics.

application/json
totalinteger · int64Optional

The total number of results.

Example: 1000
offsetinteger · int64Optional

The offset for the results.

Example: 10
limitinteger · int64Optional

The maximum number of results to be returned.

Example: 100
get/navigation/most_viewed
200

Paged response with found navigation statistics ordered by number of views descending. By default, the result contains up to 1000 navigation statistics.

Find recently viewed assets.

get

Returns the assets that were recently viewed by the current user.

Authorizations
AuthorizationstringRequired
Query parameters
offsetinteger · int32Optional

The first result to retrieve. If not set (offset = 0), results will be retrieved starting from row 0.

Default: 0
limitinteger · int32Optional

The maximum number of results to retrieve. If not set (limit = 0), the default limit will be used. The maximum allowed limit is 1000.

Default: 0
countLimitinteger · int32Optional

Allows to limit the number of elements that will be counted. -1 will count everything and 0 will cause the count to be skipped

Default: -1
Responses
200

Paged response with found navigation statistics ordered by last viewed date descending. Views number is not calculated. By default, the result contains up to 1000 navigation statistics.

application/json
totalinteger · int64Optional

The total number of results.

Example: 1000
offsetinteger · int64Optional

The offset for the results.

Example: 10
limitinteger · int64Optional

The maximum number of results to be returned.

Example: 100
get/navigation/recently_viewed
200

Paged response with found navigation statistics ordered by last viewed date descending. Views number is not calculated. By default, the result contains up to 1000 navigation statistics.

Last updated

Was this helpful?