Clean beautiful customer data. Now in Slack.
Add to your application's Gemfile:
gem 'clearbit-slack'
Add Clearbit and Slack config vars:
# config/initializers/clearbit.rb
Clearbit.key = ENV['CLEARBIT_KEY']
Clearbit::Slack.configure do |config|
config.slack_url = ENV['SLACK_URL']
config.slack_channel = '#signups'
end
Sign up for a Free Trial if you don't already have a Clearbit key.
Field | Description |
---|---|
company | Company data returned from Clearbit |
person | Person data returned form Clearbit |
message | Used for deep link into an internal Admin/CRM |
Used to augment message data when Person not found | |
full_name | Used to augment message data when Person not found |
Lookup email using the Clearbit streaming API and ping Slack channel:
# app/jobs/signup_notification.rb
module APIHub
module Jobs
class SignupNotification
include Sidekiq::Worker
def perform(customer_id)
customer = Customer.find!(customer_id)
result = Clearbit::Enrichment.find(email: customer.email, given_name: customer.first_name, family_name: customer.last_name, stream: true)
result.merge!(
email: customer.email,
full_name: "#{customer.first_name} #{customer.last_name}",
message: "View details in <https://admin-panel.com/#{customer.token}|Admin Panel>",
)
Clearbit::Slack.ping(result)
# Save Clearbit data to datastore
end
end
end
end
Receive a webhook with Clearbit data and ping Slack channel:
# app/controllers/webhooks_controller.rb
class WebhooksController < ApplicationController
def clearbit
webhook = Clearbit::Webhook.new(env)
customer = Customer.find!(webhook.webhook_id)
result = webhook.body
result.merge!(
email: customer.email,
full_name: "#{customer.first_name} #{customer.last_name}",
message: "View details in <https://admin-panel.com/#{customer.token}|Admin Panel>",
)
Clearbit::Slack.ping(result)
# Save Clearbit data to datastore
end
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)