List/Search Liveblog
Request: GET /apigw/search/v1/organization/{organizationId}/liveblogs
Query Parameters:
q: Text queryowner_id: The ID of the owning user/organization. If empty, all liveblogs the organization has access to will be returned.sportstype: Custom template or Sportstypetag: Tag to filter bytimeframe: Time period to filter by. Allowed values [‘today’, ‘current’, ‘future’, ‘all’, ‘past’]limit: Limit results per pagesort: Sort order (default starts_at). Allowed values [‘starts_at’, ‘updated_at’]more: 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",
"...": "..."
}
]
}