List/Search Liveblog
Request: GET /apigw/search/v1/organization/{organizationId}/liveblogs
Query Parameters:
owner_id
: The ID of the owning user/organizationq
: Text querysportstype
: Custom template or Sportstypetag
: Tag to filter bytimeframe
: Time period to filter by. Allowed values [‘today’, ‘current’, ‘future’, ‘all’, ‘past’]limit
: Limit results per pagemore
: Page number
Success Response: Tik::Model::Collection[Tik::Model::Game]
Object. The Tik::Model::Game
objects within the collection will be abbreviated. They contain no events and several rarely used fields are stripped out.
{
"_type": "Tik::Model::Collection",
// (int) the total number of results in the list
"total": 0,
// (int) the index of the first element of result
"offset": 0,
// (array) the result list
"items": [
{
"_type": "Tik::Model::Game",
"...": "..."
}
]
}