get Browse Facets CRT
suspend fun getBrowseFacetsCRT( page: Int? = null, perPage: Int? = null, offset: Int? = null, showHiddenFacets: Boolean? = null): BrowseFacetsResponse
Content copied to clipboard
Returns a list of browse facets results. This function should be called within a coroutine scope.
Example:
runBlocking {
launch {
try {
val browseFacetsResults = constructorIo.getBrowseFacetsCRT(1)
// Do something with browseFacetsResults
} catch (e: Exception) {
println(e)
}
}
}
Content copied to clipboard
Parameters
page
the page number of the results (Can't be used with offset)
per Page
the number of results per page to return
offset
the number of results to skip from the start (Can't be used with page)
show Hidden Facets
show fields that are hidden by default