class Platforms::Yammer::Api::Threads

Threads in Yammer @author Benjamin Elias @since 0.1.0

Public Instance Methods

get(id, options={}) click to toggle source

Get information about a thread @param id [#to_s] The thread ID @param options [Hash] Options for the request @param headers [Hash] Additional headers to send with the request @return [Faraday::Response] the API response @see developer.yammer.com/docs/threadsidjson

# File lib/platforms/yammer/api/threads.rb, line 15
def get id, options={}, headers={}
  @connection.get "threads/#{id}.json", options, headers
end