Skip to content

Commit

Permalink
Merge pull request #234 from seanlinsley/patch-2
Browse files Browse the repository at this point in the history
Fix typo in README
  • Loading branch information
eugeneius committed Mar 18, 2016
2 parents 748d79d + e8be5ae commit c4cf9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ intercom.conversations.reply(:id => conversation.id, :type => 'user', :email =>
# Admin (identified by id) replies with a comment
intercom.conversations.reply(:id => conversation.id, :type => 'admin', :admin_id => '123', :message_type => 'comment', :body => 'bar')
# User (identified by email) replies with a comment and attachment
intercom.conversations.reply(:id => conversation.id, :type => 'user', :email => 'joe@example.com', :message_type => 'comment', :body => 'foo', :attachment => ['http://www.example.com/attachment.jpg'])
intercom.conversations.reply(:id => conversation.id, :type => 'user', :email => 'joe@example.com', :message_type => 'comment', :body => 'foo', :attachment_urls => ['http://www.example.com/attachment.jpg'])

# Open
intercom.conversations.open(id: conversation.id, admin_id: '123')
Expand Down

0 comments on commit c4cf9c6

Please sign in to comment.