Method: ChatWork::Client::FileMethods#find_file
- Defined in:
- lib/chatwork/client/file_methods.rb
#find_file(room_id:, file_id:, create_download_url: nil) {|response_body, response_header| ... } ⇒ Hashie::Mash
Get information about the specified file
64 65 66 |
# File 'lib/chatwork/client/file_methods.rb', line 64 def find_file(room_id:, file_id:, create_download_url: nil, &block) get("/rooms/#{room_id}/files/#{file_id}", create_download_url: boolean_to_integer(create_download_url), &block) end |