class XingApi::Conversation::Attachment
Public Class Methods
download_url(conversation_id, attachment_id, options = {})
click to toggle source
# File lib/xing_api/conversation/attachment.rb, line 8 def self.download_url(conversation_id, attachment_id, options = {}) request(:post, "/v1/users/me/conversations/#{conversation_id}/attachments/#{attachment_id}/download", options) end
list(conversation_id, options = {})
click to toggle source
# File lib/xing_api/conversation/attachment.rb, line 4 def self.list(conversation_id, options = {}) request(:get, "/v1/users/me/conversations/#{conversation_id}/attachments", options) end