List/Search Liveblog

Request: GET /apigw/search/v1/organization/{organizationId}/liveblogs

Query Parameters:

  • owner_id: The ID of the owning user/organization
  • q: Text query
  • sportstype: Custom template or Sportstype
  • tag: Tag to filter by
  • timeframe: Time period to filter by. Allowed values [‘today’, ‘current’, ‘future’, ‘all’, ‘past’]
  • limit: Limit results per page
  • 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",
      "...": "..."
    }
  ]
}