We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1609160 commit 8e89968Copy full SHA for 8e89968
README.md
@@ -61,7 +61,7 @@ user = Intercom::User.find(:user_id => "1")
61
# Find user by id
62
user = Intercom::User.find(:id => "1")
63
# Create a user
64
-user = Intercom::User.create(:email => "bob@example.com", :name => "Bob Smith")
+user = Intercom::User.create(:email => "bob@example.com", :name => "Bob Smith", :signed_up_at => Time.now.to_i)
65
# Update custom_attributes for a user
66
user.custom_attributes["average_monthly_spend"] = 1234.56; user.save
67
# Perform incrementing
@@ -356,4 +356,3 @@ Calling `Intercom.rate_limit_details` returns a Hash that contains details about
356
Intercom.rate_limit_details
357
#=> {:limit=>180, :remaining=>179, :reset_at=>2014-10-07 14:58:00 +0100}
358
```
359
-
0 commit comments