Method: ChatWork::Client::FileMethods#create_file
- Defined in:
- lib/chatwork/client/file_methods.rb
#create_file(room_id:, file:, message: nil) {|response_body, response_header| ... } ⇒ Hashie::Mash Also known as: upload_file
Upload a new file to room
92 93 94 95 96 97 98 99 |
# File 'lib/chatwork/client/file_methods.rb', line 92 def create_file(room_id:, file:, message: nil, &block) params = { file: file, message: , } post("/rooms/#{room_id}/files", params, &block) end |