sendgrid から提供された json URL があります。触れるだけで十分です。どうすればいいですか?
def suspend
@user = User.find(params[:id])
@user.update_attribute("suspended", true)
# the url I need to touch => https://sendgrid.com/api/unsubscribes.add.xml?api_user=username%40website.com&api_key=secret_password&email=#{@user.email}
end