diff --git a/script/import_scripts/socialcast/README.md b/script/import_scripts/socialcast/README.md
new file mode 100644
index 000000000..84e5d66c8
--- /dev/null
+++ b/script/import_scripts/socialcast/README.md
@@ -0,0 +1,21 @@
+
+To get started, copy the config.ex.yml to config.yml, and then update the properties for your Socialcast instance.
+
+This importer uses the [Socialcast API](https://socialcast.github.io/socialcast/apidoc.html).
+
+```
+domain: 'my-socialcast-domain'
+username: 'my-socialcast-username'
+password: 'my-socialcast-password'
+```
+
+Create the directory for the json files to export: `mkdir output`
+Then run `ruby export.rb /path/to/config.yml`
+
+Create a category named "Socialcast Import" or all topics will be imported into
+the "Uncategorized" category.
+
+Topics will be tagged with the names of the groups they were originally posted
+in on Socialcast.
+
+To run the import, run `ruby import.rb`
diff --git a/script/import_scripts/socialcast/create_title.rb b/script/import_scripts/socialcast/create_title.rb
new file mode 100644
index 000000000..0987f7a45
--- /dev/null
+++ b/script/import_scripts/socialcast/create_title.rb
@@ -0,0 +1,50 @@
+require 'uri'
+
+class CreateTitle
+
+ def self.from_body(body)
+ title = remove_mentions body
+ title = remove_urls title
+ title = remove_stray_punctuation title
+ title = first_long_line title
+ return unless title
+
+ sentences = complete_sentences title
+ if !sentences.nil?
+ title = sentences[1]
+ else
+ title = complete_words title
+ end
+
+ return title unless title.nil? || title.size < 20
+ end
+
+ private
+
+ def self.remove_mentions(text)
+ text.gsub(/@[\w]*/, '')
+ end
+
+ def self.remove_urls(text)
+ text.gsub(URI::regexp(['http', 'https', 'mailto', 'ftp', 'ldap', 'ldaps']), '')
+ end
+
+ def self.remove_stray_punctuation(text)
+ text.gsub(/\s+?[^a-zA-Z0-9\s]\s+/, "\n")
+ end
+
+ def self.first_long_line(text)
+ lines = text.split("\n").select {|t| t.strip.size >= 20}
+ return if lines.empty?
+ lines[0].strip
+ end
+
+ def self.complete_sentences(text)
+ /(^.*[\S]{2,}[.!?:]+)\W/.match(text[0...80] + ' ')
+ end
+
+ def self.complete_words(text)
+ return text[0...80].rpartition(/\s/)[0] + "..." if text.size >= 80
+ text
+ end
+end
diff --git a/script/import_scripts/socialcast/export.rb b/script/import_scripts/socialcast/export.rb
new file mode 100644
index 000000000..930112818
--- /dev/null
+++ b/script/import_scripts/socialcast/export.rb
@@ -0,0 +1,58 @@
+require 'yaml'
+require 'fileutils'
+require_relative 'socialcast_api'
+
+def load_config file
+ config = YAML::load_file(File.join(__dir__, file))
+ @domain = config['domain']
+ @username = config['username']
+ @password = config['password']
+end
+
+def export
+ @api = SocialcastApi.new @domain, @username, @password
+ create_dir("output/users")
+ create_dir("output/messages")
+ export_users
+ export_messages
+end
+
+def export_users(page=1)
+ users = @api.list_users({page: page})
+ return if users.empty?
+ users.each do |user|
+ File.open("output/users/#{user['id']}.json", 'w') do |f|
+ puts user['contact_info']['email']
+ f.write user.to_json
+ f.close
+ end
+ end
+ export_users page + 1
+end
+
+def export_messages(page=1)
+ messages = @api.list_messages({page: page})
+ return if messages.empty?
+ messages.each do |message|
+ File.open("output/messages/#{message['id']}.json", 'w') do |f|
+ title = message['title']
+ title = message['body'] if title.empty?
+ title = title.split('\n')[0][0..50] unless title.empty?
+
+ puts "#{message['id']}: #{title}"
+ f.write message.to_json
+ f.close
+ end
+ end
+ export_messages page + 1
+end
+
+def create_dir(path)
+ path = File.join(__dir__, path)
+ unless File.directory?(path)
+ FileUtils.mkdir_p(path)
+ end
+end
+
+load_config ARGV.shift
+export
diff --git a/script/import_scripts/socialcast/import.rb b/script/import_scripts/socialcast/import.rb
new file mode 100644
index 000000000..b28b1e505
--- /dev/null
+++ b/script/import_scripts/socialcast/import.rb
@@ -0,0 +1,102 @@
+require_relative './socialcast_message.rb'
+require_relative './socialcast_user.rb'
+require 'set'
+require File.expand_path(File.dirname(__FILE__) + "/../base.rb")
+
+class ImportScripts::Socialcast < ImportScripts::Base
+
+ MESSAGES_DIR = "output/messages"
+ USERS_DIR = "output/users"
+
+ def initialize
+ super
+ @system_user = Discourse.system_user
+ end
+
+ def execute
+ puts "", "Importing Socialcast Users..."
+ import_users
+ puts "", "Importing Socialcast Messages..."
+ import_messages
+ EmailToken.delete_all
+ puts "", "Done"
+ end
+
+ def import_messages
+ topics = 0
+ imported = 0
+ total = count_files(MESSAGES_DIR)
+ Dir.foreach(MESSAGES_DIR) do |filename|
+ next if filename == '.' or filename == '..'
+ topics += 1
+ message_json = File.read MESSAGES_DIR + '/' + filename
+ message = SocialcastMessage.new(message_json)
+ next unless message.title
+ created_topic = import_topic message.topic
+ if created_topic
+ import_posts message.replies, created_topic.topic_id
+ end
+ imported += 1
+ print_status topics, total
+ end
+ puts "", "Imported #{imported} topics. Skipped #{total - imported}."
+ end
+
+ def import_users
+ users = 0
+ total = count_files(USERS_DIR)
+ Dir.foreach(USERS_DIR) do |filename|
+ next if filename == '.' or filename == '..'
+ user_json = File.read USERS_DIR + '/' + filename
+ user = SocialcastUser.new(user_json).user
+ create_user user, user[:id]
+ users += 1
+ print_status users, total
+ end
+ end
+
+ def count_files(path)
+ Dir.foreach(path).select {|f| f != '.' && f != '..'}.count
+ end
+
+ def import_topic topic
+ post = nil
+ if post_id = post_id_from_imported_post_id(topic[:id])
+ post = Post.find(post_id) # already imported this topic
+ else
+ topic[:user_id] = user_id_from_imported_user_id(topic[:author_id]) || -1
+ topic[:category] = 'Socialcast Import'
+
+ post = create_post(topic, topic[:id])
+
+ unless post.is_a?(Post)
+ puts "Error creating topic #{topic[:id]}. Skipping."
+ puts post.inspect
+ end
+ end
+
+ post
+ end
+
+ def import_posts posts, topic_id
+ posts.each do |post|
+ import_post post, topic_id
+ end
+ end
+
+ def import_post post, topic_id
+ return if post_id_from_imported_post_id(post[:id]) # already imported
+ post[:topic_id] = topic_id
+ post[:user_id] = user_id_from_imported_user_id(post[:author_id]) || -1
+ new_post = create_post post, post[:id]
+ unless new_post.is_a?(Post)
+ puts "Error creating post #{post[:id]}. Skipping."
+ puts new_post.inspect
+ end
+ end
+
+end
+
+if __FILE__==$0
+ ImportScripts::Socialcast.new.perform
+end
diff --git a/script/import_scripts/socialcast/socialcast_api.rb b/script/import_scripts/socialcast/socialcast_api.rb
new file mode 100644
index 000000000..ab27546a4
--- /dev/null
+++ b/script/import_scripts/socialcast/socialcast_api.rb
@@ -0,0 +1,39 @@
+require 'base64'
+require 'json'
+require 'rest-client'
+
+class SocialcastApi
+
+ attr_accessor :domain, :username, :password
+
+ def initialize domain, username, password
+ @domain = domain
+ @username = username
+ @password = password
+ end
+
+ def base_url
+ "https://#{@domain}.socialcast.com/api"
+ end
+
+ def headers
+ encoded = Base64.encode64 "#{@username}:#{@password}"
+ {:Authorization => "Basic #{encoded.strip!}", :Accept => "application/json"}
+ end
+
+ def request url
+ JSON.parse(RestClient.get url, headers)
+ end
+
+ def list_users(opts={})
+ page = opts[:page] ? opts[:page] : 1
+ response = request "#{base_url}/users?page=#{page}"
+ response['users'].sort {|u| u['id']}
+ end
+
+ def list_messages(opts={})
+ page = opts[:page] ? opts[:page] : 1
+ response = request "#{base_url}/messages?page=#{page}"
+ response['messages'].sort {|m| m['id']}
+ end
+end
diff --git a/script/import_scripts/socialcast/socialcast_message.rb b/script/import_scripts/socialcast/socialcast_message.rb
new file mode 100644
index 000000000..115ab77b1
--- /dev/null
+++ b/script/import_scripts/socialcast/socialcast_message.rb
@@ -0,0 +1,63 @@
+require 'json'
+require 'cgi'
+require 'time'
+require_relative 'create_title.rb'
+
+class SocialcastMessage
+
+ def initialize message_json
+ @parsed_json = JSON.parse message_json
+ end
+
+ def topic
+ topic = {}
+ topic[:id] = @parsed_json['id']
+ topic[:author_id] = @parsed_json['user']['id']
+ topic[:title] = title
+ topic[:raw] = @parsed_json['body']
+ topic[:created_at] = Time.parse @parsed_json['created_at']
+ topic[:tags] = [group] if group
+ topic
+ end
+
+ def title
+ CreateTitle.from_body @parsed_json['body']
+ end
+
+ def group
+ @parsed_json['group']['groupname'] if @parsed_json['group']
+ end
+
+ def url
+ @parsed_json['url']
+ end
+
+ def message_type
+ @parsed_json['message_type']
+ end
+
+ def replies
+ posts = []
+ comments = @parsed_json['comments']
+ comments.each do |comment|
+ posts << post_from_comment(comment)
+ end
+ posts
+ end
+
+ def post_from_comment(comment)
+ post = {}
+ post[:id] = comment['id']
+ post[:author_id] = comment['user']['id']
+ post[:raw] = comment['text']
+ post[:created_at] = Time.parse comment['created_at']
+ post
+ end
+
+ private
+
+ def unescape html
+ return nil unless html
+ CGI.unescapeHTML html
+ end
+end
diff --git a/script/import_scripts/socialcast/socialcast_user.rb b/script/import_scripts/socialcast/socialcast_user.rb
new file mode 100644
index 000000000..a96a282e3
--- /dev/null
+++ b/script/import_scripts/socialcast/socialcast_user.rb
@@ -0,0 +1,24 @@
+require 'json'
+require 'cgi'
+require 'time'
+
+class SocialcastUser
+
+ def initialize user_json
+ @parsed_json = JSON.parse user_json
+ end
+
+ def user
+ email = @parsed_json['contact_info']['email']
+ email = "#{@parsed_json['id']}@noemail.com" unless email
+
+ user = {}
+ user[:id] = @parsed_json['id']
+ user[:name] = @parsed_json['name']
+ user[:username] = @parsed_json['username']
+ user[:email] = email
+ user[:staged] = true
+ user
+ end
+
+end
diff --git a/script/import_scripts/socialcast/test/config.ex.yml b/script/import_scripts/socialcast/test/config.ex.yml
new file mode 100644
index 000000000..ff15d462d
--- /dev/null
+++ b/script/import_scripts/socialcast/test/config.ex.yml
@@ -0,0 +1,3 @@
+domain: 'demo'
+username: 'emily@socialcast.com'
+password: 'demo'
diff --git a/script/import_scripts/socialcast/test/test_create_title.rb b/script/import_scripts/socialcast/test/test_create_title.rb
new file mode 100644
index 000000000..035591871
--- /dev/null
+++ b/script/import_scripts/socialcast/test/test_create_title.rb
@@ -0,0 +1,111 @@
+require 'minitest/autorun'
+require_relative '../create_title.rb'
+
+class TestCreateTitle < Minitest::Test
+
+ def test_create_title_1
+ body = "@GreatCheerThreading \nWhere can I find information on how GCTS stacks up against the competition? What are the key differentiators?"
+ expected = "Where can I find information on how GCTS stacks up against the competition?"
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_2
+ body = "GCTS in 200 stores across town. How many threads per inch would you guess? @GreatCheerThreading"
+ expected = "GCTS in 200 stores across town. How many threads per inch would you guess?"
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_3
+ body = "gFabric Sheets 1.2 now has Great Cheer Threads, letting you feel the softness running through the cotton fibers."
+ expected = "gFabric Sheets 1.2 now has Great Cheer Threads, letting you feel the softness..."
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_4
+ body = "Great Cheer Threads® for GCTS Platinum Partners |\n Rules And Spools"
+ expected = "Great Cheer Threads® for GCTS Platinum Partners"
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_5
+ body = "One sentence. Two sentence. Three sentence. Four is going to go on and on for more words than we want."
+ expected = "One sentence. Two sentence. Three sentence."
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_6
+ body = "Anyone know of any invite codes for www.greatcheer.io (the Great Cheer v2 site)?\n\n//cc @RD @GreatCheerThreading"
+ expected = "Anyone know of any invite codes for www.greatcheer.io (the Great Cheer v2 site)?"
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_6b
+ body = "Anyone know of any invite codes for www.greatcheer.io (the Great Cheer v2 site of yore)?\n\n//cc @RD @GreatCheerThreading"
+ expected = "Anyone know of any invite codes for www.greatcheer.io (the Great Cheer v2 site..."
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_6c
+ body = "Anyone know of any invite codes for www.greatcheer.io?! (the Great Cheer v2 site of yore)?\n\n//cc @RD @GreatCheerThreading"
+ expected = "Anyone know of any invite codes for www.greatcheer.io?!"
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_7
+ body = "@GreatCheerThreading \n\nDoes anyone know what the plan is to move to denser 1.2 threads for GCTS?\n\nI have a customer interested in the higher thread counts offered in 1.2."
+ expected = "Does anyone know what the plan is to move to denser 1.2 threads for GCTS?"
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_8
+ body = "@GreatCheerThreading @FabricWeavingWorldwide \n\nI was just chatting with a customer, after receiving this email:\n\n\"Ours is more of a ‘conceptual’ question. We have too much fiber"
+ expected = "I was just chatting with a customer, after receiving this email:"
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_9
+ body = "Hi,\n\nDoes anyone have a PPT deck on whats new in cotton (around 10 or so slides) nothing to detailed as per what we have in the current 1.x version?\n\nI am not after a what's coming in cotton 2"
+ expected = "Does anyone have a PPT deck on whats new in cotton (around 10 or so slides)..."
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_10
+ body = "foo\nbar\nbaz"
+ expected = nil
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_11
+ body = "Hi Guys,\nI'm working with #gtcs and one of the things we're playing with is TC. What better tool to demo and use than our own \nhttps://greatcheerthreading.com/themostthreads/cool-stuff\n\nThis used to work great in 2013,"
+ expected = "I'm working with #gtcs and one of the things we're playing with is TC."
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_12
+ body = ""
+ expected = nil
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+ def test_create_title_13
+ body = "Embroidered TC ... http://blogs.greatcheerthreading.com/thread/embroidering-the-threads-is-just-the-beginning\n@SoftStuff @TightWeave and team hopefully can share their thoughts on this recent post."
+ expected = "and team hopefully can share their thoughts on this recent post."
+ title = CreateTitle.from_body body
+ assert_equal(expected, title)
+ end
+
+end
diff --git a/script/import_scripts/socialcast/test/test_data.rb b/script/import_scripts/socialcast/test/test_data.rb
new file mode 100644
index 000000000..73c270ea3
--- /dev/null
+++ b/script/import_scripts/socialcast/test/test_data.rb
@@ -0,0 +1,8272 @@
+USERS = '{
+ "users": [
+ {
+ "contact_info": {
+ "cell_phone": "",
+ "office_phone": "",
+ "aim": "",
+ "google_talk": "",
+ "yahoo": "",
+ "skype": "",
+ "jabber": "",
+ "msn": "",
+ "email": "productionbot145@socialcast.com",
+ "location": "Cleveland, OH"
+ },
+ "manager": {
+ "id": 20,
+ "name": "Lee Mosely",
+ "html_name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely",
+ "avatars": {
+ "is_system_default": false,
+ "id": 15,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lar4A1A%2BIGVT0Jm9BWc%2FZkLQI2E%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=alc2EjX977%2FPhZVZoUQFx6sX1aw%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=qvAEoBNLOmBVNE0APo3Aa9rBih4%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VmuoCQ11CNJSODGSSKRiGIlpaQo%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VrWQo8Mp7%2B%2FSUUwXhY59qBLYezk%3D"
+ },
+ "username": "LeeMosely",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Manufacturing Tech II",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "custom_fields": [
+ {
+ "id": "business_unit",
+ "value": "Logistics/Warehouse",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Business Operations",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "150 Ton Press",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 56,
+ "following_count": 9,
+ "followers_count": 8,
+ "status_message": null,
+ "id": 19,
+ "name": "Production Bot #145",
+ "html_name": "Production Bot #145",
+ "url": "https://demo.socialcast.com/users/19-productionbot145",
+ "avatars": {
+ "is_system_default": false,
+ "id": 133,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SQSm4NwY8O5w4CVB%2FEbB3vg65k8%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vvJHdcoYc0MrD5Xdz3wupxkcSwg%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=37ARrSrvKAFSWMM9cr%2Bus8d5%2FaA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2B3qnk%2BHfmoFWq7eptOrKOpH5KmU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=oakAfjciyk2%2Fj4FjDgP7BB9BZtE%3D"
+ },
+ "username": "ProductionBot145",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "150 Ton Press",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "949-551-4578",
+ "office_phone": "949-555-1010",
+ "email": "linda@socialcast.com",
+ "location": "Irvine, CA"
+ },
+ "manager": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "custom_fields": [
+ {
+ "id": "passions",
+ "value": ", ",
+ "label": "Passions"
+ },
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Marketing",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Marketing Coordinator",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 57,
+ "following_count": 5,
+ "followers_count": 11,
+ "status_message": null,
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "email": "brian@socialcast.com",
+ "location": "New York, NY"
+ },
+ "manager": {
+ "id": 30,
+ "name": "Stacey Lynch",
+ "html_name": "Stacey Lynch",
+ "url": "https://demo.socialcast.com/users/30-staceylynch",
+ "avatars": {
+ "is_system_default": false,
+ "id": 78,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=z01qjk0%2BTBDXLSu9pQ1kyrREDgg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nVXHAtqs8PYFcdJxJrdKxvxXlzA%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SPqtfFsU6XQ3Jac2hvGakOWEFcY%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rvImB6hsqvWIsJnRWieqQ6DMV5c%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8S5wrQGd1VRyXy%2FcsS5gkn2O6gs%3D"
+ },
+ "username": "StaceyLynch",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Director of Sales",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "custom_fields": [
+ {
+ "id": "business_unit",
+ "value": "Logistics/Warehouse",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Business Operations",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Operations Manager",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 112,
+ "following_count": 2,
+ "followers_count": 3,
+ "status_message": null,
+ "id": 33,
+ "name": "Brian Burke",
+ "html_name": "Brian Burke",
+ "url": "https://demo.socialcast.com/users/33-brianburke",
+ "avatars": {
+ "is_system_default": false,
+ "id": 99,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=HZU%2BkuYB0q%2ByI1UwipRVxSguOOg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wWBgq8AaDuPHOJ0hK4t%2BUwbeK20%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Q2tzQfrVq7I1uaawW%2FNXpzwvrCo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SCNwQyovZaZFL%2BOroyaoTVz65sA%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Fl4o4zuOc%2BUlk4%2Bu%2FBH6SEUOja8%3D"
+ },
+ "username": "BrianBurke",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Operations Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "949 555 2276",
+ "office_phone": "949 555 2275",
+ "email": "bob@socialcast.com",
+ "location": "Tustin"
+ },
+ "manager": {
+ "id": 33,
+ "name": "Brian Burke",
+ "html_name": "Brian Burke",
+ "url": "https://demo.socialcast.com/users/33-brianburke",
+ "avatars": {
+ "is_system_default": false,
+ "id": 99,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=HZU%2BkuYB0q%2ByI1UwipRVxSguOOg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wWBgq8AaDuPHOJ0hK4t%2BUwbeK20%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Q2tzQfrVq7I1uaawW%2FNXpzwvrCo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SCNwQyovZaZFL%2BOroyaoTVz65sA%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Fl4o4zuOc%2BUlk4%2Bu%2FBH6SEUOja8%3D"
+ },
+ "username": "BrianBurke",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Operations Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "custom_fields": [
+ {
+ "id": "passions",
+ "value": "Blogging, databases, Cricket, Bollywood films, electronic music",
+ "label": "Passions"
+ },
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Technology",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Senior Software Engineer",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 99,
+ "following_count": 10,
+ "followers_count": 9,
+ "status_message": null,
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "949 555 6474",
+ "office_phone": "949 555 6473",
+ "aim": "",
+ "google_talk": "",
+ "yahoo": "",
+ "skype": "",
+ "jabber": "",
+ "twitter": "",
+ "msn": "",
+ "email": "paul@socialcast.com",
+ "location": "Tustin"
+ },
+ "manager": null,
+ "custom_fields": [
+ {
+ "id": "passions",
+ "value": "buying, budgeting, surfing, art, italian food",
+ "label": "Passions"
+ },
+ {
+ "id": "business_unit",
+ "value": "Retail",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Management",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Inside Sales Manager",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 54,
+ "following_count": 9,
+ "followers_count": 10,
+ "status_message": null,
+ "id": 23,
+ "name": "Paul Gandy",
+ "html_name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy",
+ "avatars": {
+ "is_system_default": false,
+ "id": 36,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iZ8PkN9bpBmF372tx1tSjWROjkE%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vSlJQJuDAPmQaOLOFk1ymBY2Q4M%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pWpvN4aYWUhCkynIebEwchP%2BkCA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AQnwgMnTv4bUFDu8B1hrRnHwrqU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=5OjmE0QGqDvt3Vi57yanY8z%2FxVU%3D"
+ },
+ "username": "PaulGandy",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Inside Sales Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "949 555 6686",
+ "office_phone": "949 555 6685",
+ "aim": "emilytime",
+ "google_talk": "emily@demo.socialcast.com",
+ "yahoo": "emilytimes12",
+ "skype": "emily_james",
+ "jabber": "emily@socialcast.jabber.com",
+ "msn": "emily@msn.com",
+ "email": "emily@socialcast.com",
+ "location": "Tustin, CA"
+ },
+ "manager": {
+ "id": 30,
+ "name": "Stacey Lynch",
+ "html_name": "Stacey Lynch",
+ "url": "https://demo.socialcast.com/users/30-staceylynch",
+ "avatars": {
+ "is_system_default": false,
+ "id": 78,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=z01qjk0%2BTBDXLSu9pQ1kyrREDgg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nVXHAtqs8PYFcdJxJrdKxvxXlzA%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SPqtfFsU6XQ3Jac2hvGakOWEFcY%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rvImB6hsqvWIsJnRWieqQ6DMV5c%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8S5wrQGd1VRyXy%2FcsS5gkn2O6gs%3D"
+ },
+ "username": "StaceyLynch",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Director of Sales",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "custom_fields": [
+ {
+ "id": "resume",
+ "value": "I currently assist the VP of Marketing in making sure that all marketing related activites are rolled out properly in the Americas market.",
+ "label": "Job Description"
+ },
+ {
+ "id": "passions",
+ "value": "Event planning, attending conferences, social media, international marketing , working out, reading, soccer, skiing, Europe, redecorating",
+ "label": "Passions"
+ },
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Marketing",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Marketing Assistant",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": null,
+ "following_count": 13,
+ "followers_count": 14,
+ "status_message": null,
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "949 555 8848",
+ "office_phone": "949 555 8847",
+ "aim": "",
+ "google_talk": "",
+ "yahoo": "",
+ "skype": "",
+ "jabber": "",
+ "twitter": "",
+ "msn": "",
+ "email": "jennifer@socialcast.com",
+ "location": "Tustin"
+ },
+ "manager": null,
+ "custom_fields": [
+ {
+ "id": "passions",
+ "value": "Intranets, wikis, knowledge management, 401k, sewing, playing with my kids",
+ "label": "Passions"
+ },
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Technology",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Vice President of Product",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 100,
+ "following_count": 14,
+ "followers_count": 10,
+ "status_message": null,
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "949 555 4432",
+ "office_phone": "949 555 4431",
+ "email": "vernon@socialcast.com",
+ "location": "Tustin"
+ },
+ "manager": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "custom_fields": [
+ {
+ "id": "passions",
+ "value": "management, seminars, golf, playing with my kids",
+ "label": "Passions"
+ },
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Management",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Manager -- Operations",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 53,
+ "following_count": 9,
+ "followers_count": 9,
+ "status_message": null,
+ "id": 28,
+ "name": "Vernon Lester",
+ "html_name": "Vernon Lester",
+ "url": "https://demo.socialcast.com/users/28-vernonlester",
+ "avatars": {
+ "is_system_default": false,
+ "id": 71,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=V%2BT2pJV%2BzV5YRH9DJ76xTRDE2cA%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=3hozIIO8BGxgaEv4QUmFxbGvjgo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=d38HQlmQJ4AGGTT%2B5kp5Oqny3SI%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2B5KcV2Eox4x7x1dvN0zE%2B0ioevA%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=o4VL4h50776JKi00X9PF4scnvIs%3D"
+ },
+ "username": "VernonLester",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "app_admin",
+ "type": "User",
+ "title": "Manager -- Operations",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "email": "stacey@socialcast.com",
+ "location": "Irvine, CA"
+ },
+ "manager": null,
+ "custom_fields": [
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Sales",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Director of Sales",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 117,
+ "following_count": 11,
+ "followers_count": 3,
+ "status_message": null,
+ "id": 30,
+ "name": "Stacey Lynch",
+ "html_name": "Stacey Lynch",
+ "url": "https://demo.socialcast.com/users/30-staceylynch",
+ "avatars": {
+ "is_system_default": false,
+ "id": 78,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=z01qjk0%2BTBDXLSu9pQ1kyrREDgg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nVXHAtqs8PYFcdJxJrdKxvxXlzA%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SPqtfFsU6XQ3Jac2hvGakOWEFcY%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rvImB6hsqvWIsJnRWieqQ6DMV5c%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8S5wrQGd1VRyXy%2FcsS5gkn2O6gs%3D"
+ },
+ "username": "StaceyLynch",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Director of Sales",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "",
+ "office_phone": "",
+ "aim": "",
+ "google_talk": "",
+ "yahoo": "",
+ "skype": "",
+ "jabber": "",
+ "twitter": "",
+ "msn": "",
+ "email": "amanda@socialcast.com",
+ "location": "Boston, MA"
+ },
+ "manager": null,
+ "custom_fields": [
+ {
+ "id": "business_unit",
+ "value": "Retail",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Human Resources",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Vice President of Human Resources",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 108,
+ "following_count": 1,
+ "followers_count": 3,
+ "status_message": null,
+ "id": 31,
+ "name": "Amanda Meisel",
+ "html_name": "Amanda Meisel",
+ "url": "https://demo.socialcast.com/users/31-amandameisel",
+ "avatars": {
+ "is_system_default": false,
+ "id": 85,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=qVbxvcHBSXMTwJ8VGjiXLR1dBO0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=1YXwSQohKpMMA3cG6telVCgRDzs%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AkbESOSMW4F2ywGx3t3mH4tnalc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCCO7e4Af8QNcV1Vv10m%2FnVbD%2B4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=j9P3btm%2BWqqBKufcE8G3tLj0HPU%3D"
+ },
+ "username": "AmandaMeisel",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Human Resources",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "771 555 7758",
+ "office_phone": "771 555 7757",
+ "email": "lee@socialcast.com",
+ "location": "Charleston, South Carolina"
+ },
+ "manager": null,
+ "custom_fields": [
+ {
+ "id": "passions",
+ "value": "Welding, Soldering, Movies, swimming, dancing",
+ "label": "Passions"
+ },
+ {
+ "id": "business_unit",
+ "value": "Logistics/Warehouse",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Technology",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Manufacturing Tech II",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 55,
+ "following_count": 9,
+ "followers_count": 9,
+ "status_message": null,
+ "id": 20,
+ "name": "Lee Mosely",
+ "html_name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely",
+ "avatars": {
+ "is_system_default": false,
+ "id": 15,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lar4A1A%2BIGVT0Jm9BWc%2FZkLQI2E%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=alc2EjX977%2FPhZVZoUQFx6sX1aw%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=qvAEoBNLOmBVNE0APo3Aa9rBih4%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VmuoCQ11CNJSODGSSKRiGIlpaQo%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VrWQo8Mp7%2B%2FSUUwXhY59qBLYezk%3D"
+ },
+ "username": "LeeMosely",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Manufacturing Tech II",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "949 555 4435",
+ "office_phone": "949 555 4434",
+ "email": "marshall@socialcast.com",
+ "location": "Tustin"
+ },
+ "manager": null,
+ "custom_fields": [
+ {
+ "id": "passions",
+ "value": "valuations, sports, beach, traveling",
+ "label": "Passions"
+ },
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Finance",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Manager -- Finance",
+ "label": "Title"
+ }
+ ],
+ "followable": true,
+ "contact_id": null,
+ "following_count": 9,
+ "followers_count": 8,
+ "status_message": null,
+ "id": 22,
+ "name": "Marshall Sellers",
+ "html_name": "Marshall Sellers",
+ "url": "https://demo.socialcast.com/users/22-marshallsellers",
+ "avatars": {
+ "is_system_default": false,
+ "id": 29,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=L%2BwR6KamG3IQJ%2F8R5vlzDW5JImQ%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=HwK6YonRIqTW9GW5255DI6w2Hd4%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=HzGVNvxw4OZXMooNoW77BHnUH%2B4%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FxOD8ZcstD%2FuzW%2Fue0fbuK3gQl8%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=0PpnTic6prZBSUeuTkFUdVwjPoo%3D"
+ },
+ "username": "MarshallSellers",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Manager -- Finance",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "email": "charles@socialcast.com",
+ "location": "Irvine, CA"
+ },
+ "manager": null,
+ "custom_fields": [
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Finance",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "CFO",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 114,
+ "following_count": 1,
+ "followers_count": 2,
+ "status_message": null,
+ "id": 34,
+ "name": "Charles Whatley",
+ "html_name": "Charles Whatley",
+ "url": "https://demo.socialcast.com/users/34-charleswhatley",
+ "avatars": {
+ "is_system_default": false,
+ "id": 106,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/106/106-iStock_000004801920XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tcg%2B1E66U1xzZyRIWzQMMIifc8M%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/106/106-iStock_000004801920XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Y4LMPPMB%2FYuU1hIHRRzoBFjwkRY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/106/106-iStock_000004801920XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=J9ruNlOta3jV9nZI2UBJ1v7T8tM%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/106/106-iStock_000004801920XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=u6%2F0Js%2BxLJ%2Bz3JqGJVDJuvuoO%2B0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/106/106-iStock_000004801920XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=mq%2BL48%2F1semY7TjJpEWCg4xXOCM%3D"
+ },
+ "username": "CharlesWhatley",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "CFO",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "cell_phone": "707-338-8233",
+ "office_phone": "707-769-7316",
+ "email": "mike@socialcast.com",
+ "location": "Petaluma"
+ },
+ "manager": {
+ "id": 28,
+ "name": "Vernon Lester",
+ "html_name": "Vernon Lester",
+ "url": "https://demo.socialcast.com/users/28-vernonlester",
+ "avatars": {
+ "is_system_default": false,
+ "id": 71,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=V%2BT2pJV%2BzV5YRH9DJ76xTRDE2cA%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=3hozIIO8BGxgaEv4QUmFxbGvjgo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=d38HQlmQJ4AGGTT%2B5kp5Oqny3SI%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2B5KcV2Eox4x7x1dvN0zE%2B0ioevA%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/71/iStock_000004006744XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=o4VL4h50776JKi00X9PF4scnvIs%3D"
+ },
+ "username": "VernonLester",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "app_admin",
+ "type": "User",
+ "title": "Manager -- Operations",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "custom_fields": [
+ {
+ "id": "passions",
+ "value": "web design, community, writing, technology, gaming, music, film, commercial art",
+ "label": "Passions"
+ },
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Marketing",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Web Admin",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 101,
+ "following_count": 8,
+ "followers_count": 9,
+ "status_message": null,
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ {
+ "contact_info": {
+ "email": "charlotte@socialcast.com",
+ "location": "Irvine, CA"
+ },
+ "manager": {
+ "id": 31,
+ "name": "Amanda Meisel",
+ "html_name": "Amanda Meisel",
+ "url": "https://demo.socialcast.com/users/31-amandameisel",
+ "avatars": {
+ "is_system_default": false,
+ "id": 85,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=qVbxvcHBSXMTwJ8VGjiXLR1dBO0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=1YXwSQohKpMMA3cG6telVCgRDzs%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AkbESOSMW4F2ywGx3t3mH4tnalc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCCO7e4Af8QNcV1Vv10m%2FnVbD%2B4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/85/85-iStock_000006303723XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=j9P3btm%2BWqqBKufcE8G3tLj0HPU%3D"
+ },
+ "username": "AmandaMeisel",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Human Resources",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "custom_fields": [
+ {
+ "id": "business_unit",
+ "value": "Headquarters",
+ "label": "Business Unit"
+ },
+ {
+ "id": "department",
+ "value": "Product Management",
+ "label": "Department"
+ },
+ {
+ "id": "title",
+ "value": "Product Manager",
+ "label": "Title"
+ }
+ ],
+ "followable": false,
+ "contact_id": 110,
+ "following_count": 1,
+ "followers_count": 3,
+ "status_message": null,
+ "id": 32,
+ "name": "Charlotte Witmer",
+ "html_name": "Charlotte Witmer",
+ "url": "https://demo.socialcast.com/users/32-charlottewitmer",
+ "avatars": {
+ "is_system_default": false,
+ "id": 92,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/92/iStock_000005654030XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lsb6Sl7VvTxrV8rCqo%2B2Mr3tORM%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/92/iStock_000005654030XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tOvl9ZQM2Pj%2BFkzLHrPEHdzXKBQ%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/92/iStock_000005654030XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ep%2B5Osm%2BtmnRxgf80Z4DMc3DLuk%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/92/iStock_000005654030XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dZXD0aRKTy1SnAJ7gZnyMR8gvIw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/92/iStock_000005654030XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=MWtOh14WLKT5sKNxVe%2BaS73HA7M%3D"
+ },
+ "username": "CharlotteWitmer",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Product Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ }
+ ]
+}'
+
+MESSAGES = '{
+ "messages": [
+ {
+ "id": 426,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "I\'m so glad we have one place for all Widget 11 Marketing Materials! It will be much easier to find everything now.",
+ "html_body": "
I\'m so glad we have one place for all Widget 11 Marketing Materials! It will be much easier to find everything now.
",
+ "action": "",
+ "verb": null,
+ "message_type": "status_message",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/426",
+ "permalink_url": "https://demo.socialcast.com/messages/426",
+ "external_url": null,
+ "created_at": "2016-05-21T22:42:42+00:00",
+ "updated_at": "2016-05-21T23:02:09+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463871692,
+ "group": {
+ "name": "Acme Corp. Widget 11 Marketing Materials",
+ "groupname": "Project:1",
+ "id": 1,
+ "private": false,
+ "type": "Project",
+ "url": "https://demo.socialcast.com/projects/1"
+ },
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 9,
+ "name": "Sales Team",
+ "html_name": "Sales Team",
+ "url": "https://demo.socialcast.com/groups/9-salesteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 161,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=PSh7G83WWtPAzPuausoHBgNzuAs%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rBzJxAHWroz2Wgg3DWMO8nDcceE%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=K%2FFah5fEkQqlQ1p6R2%2F6oIRek0c%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=75fMvOuuRhqbJmpaC4xLkGpO7Gg%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=j3sm0kIWyyd1Ci31ZDVcq7x9WYg%3D"
+ },
+ "username": "SalesTeam",
+ "private": false,
+ "external_contributor": false,
+ "mention_name": "SalesTeam"
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": false,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": true,
+ "deletable": true,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [
+ {
+ "id": 9,
+ "name": "Sales Team",
+ "html_name": "Sales Team",
+ "url": "https://demo.socialcast.com/groups/9-salesteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 161,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=PSh7G83WWtPAzPuausoHBgNzuAs%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rBzJxAHWroz2Wgg3DWMO8nDcceE%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=K%2FFah5fEkQqlQ1p6R2%2F6oIRek0c%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=75fMvOuuRhqbJmpaC4xLkGpO7Gg%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=j3sm0kIWyyd1Ci31ZDVcq7x9WYg%3D"
+ },
+ "username": "SalesTeam",
+ "groupname": "SalesTeam",
+ "private": false,
+ "external_contributor": false
+ },
+ {
+ "name": "Acme Corp. Widget 11 Marketing Materials",
+ "groupname": "Project:1",
+ "id": 1,
+ "private": false,
+ "type": "Project",
+ "url": "https://demo.socialcast.com/projects/1"
+ }
+ ],
+ "extensions": [
+ {
+ "extension_type": "project_message",
+ "project": {
+ "id": 1,
+ "title": "Acme Corp. Widget 11 Marketing Materials",
+ "private": false,
+ "type": "Project",
+ "url": "https://demo.socialcast.com/projects/1"
+ }
+ }
+ ],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 1,
+ "comments": [
+ {
+ "id": 86,
+ "url": "https://demo.socialcast.com/api/messages/426/comments/86",
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "I\'ve shared this project with the @SalesTeam group, so they will have access to the files too.",
+ "html_body": "I\'ve shared this project with the @SalesTeam group, so they will have access to the files too.
",
+ "created_at": "2016-05-21T22:57:41+00:00",
+ "updated_at": "2016-05-21T22:57:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/426/comments/86",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [
+ {
+ "id": 61,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T22:57:41+00:00",
+ "unlikable": true
+ }
+ ],
+ "likes_count": 1,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 60,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson"
+ },
+ "created_at": "2016-05-21T22:54:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 1,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 432,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Acme Corp. All Hands",
+ "body": "Starting on: Thu, 01 Aug 2013 17:00:00 -0700\nAll Acme Corp. employees are invited to post your questions and feedback.\nSpeakers: Jennifer Lawson",
+ "html_body": "Starting on: Thu, 01 Aug 2013 17:00:00 -0700 \nAll Acme Corp. employees are invited to post your questions and feedback. \nSpeakers: Jennifer Lawson
",
+ "action": "announced a new Town Hall",
+ "verb": null,
+ "message_type": "new_town_hall",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/432-acme-corp-all-hands",
+ "permalink_url": "https://demo.socialcast.com/messages/432-acme-corp-all-hands",
+ "external_url": "https://demo.socialcast.local/townhalls/1-acme-corp-all-hands",
+ "created_at": "2016-05-21T22:54:42+00:00",
+ "updated_at": "2016-05-21T23:02:10+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463871513,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [
+ {
+ "extension_type": "town_hall_announcement",
+ "subject": "Acme Corp. All Hands",
+ "duration": 120,
+ "description": "All Acme Corp. employees are invited to post your questions and feedback.",
+ "speakers": [
+ {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ }
+ ],
+ "avatars": {
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/171/Acme_logo_block_square16.png?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=yRoCzU2HmSyxaG6OvrPBGWw31co%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/171/Acme_logo_block_square30.png?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=uKlQwiLKY1rO5%2BwQ9JnY0ul0iGs%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/171/Acme_logo_block_square45.png?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=KzTOx6kXLGOYOrosOboukx1BTqw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/171/Acme_logo_block_square70.png?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=MVmqaccne7Bts167Q4DJyHED7S0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/171/Acme_logo_block_square140.png?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=PydSzq1IHJksaG5kN2lfWtDypAU%3D"
+ },
+ "url": "https://demo.socialcast.com/townhalls/1-acme-corp-all-hands",
+ "archived": true,
+ "private": false,
+ "start_date": "Saturday, May 21 2016",
+ "start_time": " 5:00 PM",
+ "end_date": "Saturday, May 21 2016",
+ "end_time": " 7:00 PM",
+ "timezone": "PDT",
+ "join_link": null,
+ "unjoin_link": "/townhalls/1/members/25"
+ }
+ ],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 424,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "How will administration work for Widget 11? Will a self-service tool or alert be used?",
+ "html_body": "How will administration work for Widget 11? Will a self-service tool or alert be used?
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/424",
+ "permalink_url": "https://demo.socialcast.com/messages/424",
+ "external_url": null,
+ "created_at": "2016-05-21T22:36:42+00:00",
+ "updated_at": "2016-05-21T23:02:08+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [
+ {
+ "name": "alignment",
+ "url": "https://demo.socialcast.com/topics/alignment"
+ }
+ ],
+ "last_interacted_at": 1463871512,
+ "group": {
+ "id": 8,
+ "name": "Widget 11 Product Team",
+ "html_name": "Widget 11 Product Team",
+ "url": "https://demo.socialcast.com/groups/8-widget11productteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 168,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nTkceqAQi%2FuFh1q9RrzePFY8M68%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AjzX55l0j6SdL4Vt%2BLvDWDI%2F1jo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=CfKpd%2Fitn1CyJn0iPvHFMbZz8lE%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=30EMnJ2NXMFoN14kt86jdRzN0T4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AeP4iSV8dKDScCQnG1B9hZ4GNGw%3D"
+ },
+ "username": "Widget11ProductTeam",
+ "groupname": "Widget11ProductTeam",
+ "private": false,
+ "external_contributor": false
+ },
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 8,
+ "name": "Widget 11 Product Team",
+ "html_name": "Widget 11 Product Team",
+ "url": "https://demo.socialcast.com/groups/8-widget11productteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 168,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nTkceqAQi%2FuFh1q9RrzePFY8M68%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AjzX55l0j6SdL4Vt%2BLvDWDI%2F1jo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=CfKpd%2Fitn1CyJn0iPvHFMbZz8lE%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=30EMnJ2NXMFoN14kt86jdRzN0T4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AeP4iSV8dKDScCQnG1B9hZ4GNGw%3D"
+ },
+ "username": "Widget11ProductTeam",
+ "private": false,
+ "external_contributor": false,
+ "mention_name": null
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": false,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": true,
+ "deletable": true,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [
+ {
+ "id": 8,
+ "name": "Widget 11 Product Team",
+ "html_name": "Widget 11 Product Team",
+ "url": "https://demo.socialcast.com/groups/8-widget11productteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 168,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nTkceqAQi%2FuFh1q9RrzePFY8M68%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AjzX55l0j6SdL4Vt%2BLvDWDI%2F1jo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=CfKpd%2Fitn1CyJn0iPvHFMbZz8lE%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=30EMnJ2NXMFoN14kt86jdRzN0T4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AeP4iSV8dKDScCQnG1B9hZ4GNGw%3D"
+ },
+ "username": "Widget11ProductTeam",
+ "groupname": "Widget11ProductTeam",
+ "private": false,
+ "external_contributor": false
+ }
+ ],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 2,
+ "comments": [
+ {
+ "id": 84,
+ "url": "https://demo.socialcast.com/api/messages/424/comments/84",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Administration of Widget 11 will be very similar to Widget 10. It will include all the same features, so training will be minimal upon launch. We have incorporated a self-service module into the administrative panel, which will allow a customer to find the information they are looking for faster. This is an outstanding new feature of Widget 11 and something we are hoping will change the way our customers use the product. I have attached a small one-sheet on the new self-service panel, as well as a short description of any minor changes in the administration panel.",
+ "html_body": "Administration of Widget 11 will be very similar to Widget 10. It will include all the same features, so training will be minimal upon launch. We have incorporated a self-service module into the administrative panel, which will allow a customer to find the information they are looking for faster. This is an outstanding new feature of Widget 11 and something we are hoping will change the way our customers use the product. I have attached a small one-sheet on the new self-service panel, as well as a short description of any minor changes in the administration panel.
",
+ "created_at": "2016-05-21T22:51:41+00:00",
+ "updated_at": "2016-05-21T22:51:41+00:00",
+ "attachments": [
+ {
+ "id": 110,
+ "url": "https://demo.socialcast.com/attachments/110",
+ "filename": "110-Widget_11_Administration_Panel.pdf",
+ "public_filename": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/110/110-Widget_11_Administration_Panel.pdf?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=88h19R8nzqtV0%2FNQdqOwunLCj4c%3D",
+ "external_host_type": null,
+ "file_extension": "pdf",
+ "content_type": "application/pdf",
+ "html_filename": "110-Widget_11_Administration_Panel.pdf"
+ }
+ ],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/424/comments/84",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [
+ {
+ "id": 51,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T22:27:41+00:00",
+ "unlikable": true
+ }
+ ],
+ "likes_count": 1,
+ "thumbnail_url": null
+ },
+ {
+ "id": 85,
+ "url": "https://demo.socialcast.com/api/messages/424/comments/85",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Great thanks for sending that document over, really clarified things for me. I am fully aligned now on the new admin panel. #alignment",
+ "html_body": "Great thanks for sending that document over, really clarified things for me. I am fully aligned now on the new admin panel. #alignment
",
+ "created_at": "2016-05-21T22:54:41+00:00",
+ "updated_at": "2016-05-21T22:54:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/424/comments/85",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 56,
+ "user": {
+ "id": 20,
+ "name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely"
+ },
+ "created_at": "2016-05-21T22:42:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 50,
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis"
+ },
+ "created_at": "2016-05-21T22:24:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 2,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 431,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "What should I use to create the presentation?",
+ "html_body": "What should I use to create the presentation?
",
+ "action": "created a poll",
+ "verb": null,
+ "message_type": "poll",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/431",
+ "permalink_url": "https://demo.socialcast.com/messages/431",
+ "external_url": null,
+ "created_at": "2016-05-21T22:51:42+00:00",
+ "updated_at": "2016-05-21T23:02:10+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463871333,
+ "group": {
+ "name": "Create product slides",
+ "groupname": "Task:6",
+ "id": 6,
+ "type": "Task",
+ "url": "https://demo.socialcast.com/projects/1/tasks/6"
+ },
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": false,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": true,
+ "deletable": true,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": {
+ "id": 4,
+ "question": "What\'s the best presentation tool?",
+ "answers": [
+ {
+ "id": 11,
+ "text": "PowerPoint",
+ "response_count": 0
+ },
+ {
+ "id": 12,
+ "text": "SlideRocket",
+ "response_count": 0
+ },
+ {
+ "id": 13,
+ "text": "Google Drive",
+ "response_count": 0
+ }
+ ],
+ "social_object_id": 431,
+ "my_response_id": null
+ },
+ "embed": "/polls/4",
+ "hidden": null,
+ "subscribed": null,
+ "groups": [
+ {
+ "name": "Create product slides",
+ "groupname": "Task:6",
+ "id": 6,
+ "type": "Task",
+ "url": "https://demo.socialcast.com/projects/1/tasks/6"
+ }
+ ],
+ "extensions": [
+ {
+ "extension_type": "project_message",
+ "project": {
+ "id": 1,
+ "title": "Acme Corp. Widget 11 Marketing Materials",
+ "private": false,
+ "type": "Project",
+ "url": "https://demo.socialcast.com/projects/1"
+ },
+ "objective": {
+ "id": 2,
+ "title": "Draft Marketing Materials",
+ "type": "Objective",
+ "url": "https://demo.socialcast.com/projects/1/objectives/2"
+ },
+ "task": {
+ "id": 6,
+ "title": "Create product slides",
+ "type": "Task",
+ "url": "https://demo.socialcast.com/projects/1/tasks/6"
+ }
+ }
+ ],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 428,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Acme Corp. Widget 11 Marketing Materials",
+ "body": "Organizing files and work for Widget 11.",
+ "html_body": "Organizing files and work for Widget 11.
",
+ "action": "project was shared with group",
+ "verb": null,
+ "message_type": "project_share_with_group",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/428-acme-corp-widget-11-marketing-materials",
+ "permalink_url": "https://demo.socialcast.com/messages/428-acme-corp-widget-11-marketing-materials",
+ "external_url": "https://demo.socialcast.local/projects/1",
+ "created_at": "2016-05-21T22:48:42+00:00",
+ "updated_at": "2016-05-21T23:02:09+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463871153,
+ "group": {
+ "id": 9,
+ "name": "Sales Team",
+ "html_name": "Sales Team",
+ "url": "https://demo.socialcast.com/groups/9-salesteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 161,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=PSh7G83WWtPAzPuausoHBgNzuAs%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rBzJxAHWroz2Wgg3DWMO8nDcceE%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=K%2FFah5fEkQqlQ1p6R2%2F6oIRek0c%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=75fMvOuuRhqbJmpaC4xLkGpO7Gg%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=j3sm0kIWyyd1Ci31ZDVcq7x9WYg%3D"
+ },
+ "username": "SalesTeam",
+ "groupname": "SalesTeam",
+ "private": false,
+ "external_contributor": false
+ },
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 9,
+ "name": "Sales Team",
+ "html_name": "Sales Team",
+ "url": "https://demo.socialcast.com/groups/9-salesteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 161,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=PSh7G83WWtPAzPuausoHBgNzuAs%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rBzJxAHWroz2Wgg3DWMO8nDcceE%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=K%2FFah5fEkQqlQ1p6R2%2F6oIRek0c%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=75fMvOuuRhqbJmpaC4xLkGpO7Gg%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=j3sm0kIWyyd1Ci31ZDVcq7x9WYg%3D"
+ },
+ "username": "SalesTeam",
+ "private": false,
+ "external_contributor": false,
+ "mention_name": null
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [
+ {
+ "id": 9,
+ "name": "Sales Team",
+ "html_name": "Sales Team",
+ "url": "https://demo.socialcast.com/groups/9-salesteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 161,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=PSh7G83WWtPAzPuausoHBgNzuAs%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rBzJxAHWroz2Wgg3DWMO8nDcceE%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=K%2FFah5fEkQqlQ1p6R2%2F6oIRek0c%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=75fMvOuuRhqbJmpaC4xLkGpO7Gg%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/161/business-people-sales-team-vector_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=j3sm0kIWyyd1Ci31ZDVcq7x9WYg%3D"
+ },
+ "username": "SalesTeam",
+ "groupname": "SalesTeam",
+ "private": false,
+ "external_contributor": false
+ }
+ ],
+ "extensions": [
+ {
+ "extension_type": "project_share_with_group",
+ "project": {
+ "id": 1,
+ "url": "https://demo.socialcast.com/projects/1",
+ "title": "Acme Corp. Widget 11 Marketing Materials",
+ "description": "Organizing files and work for Widget 11.",
+ "avatars": {
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/172/258822587_a80ec49477_square140_square140_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FKeC%2Bivy3BgY44g2yruLNraXv2E%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/172/258822587_a80ec49477_square140_square140_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=eN9FUNppy%2FsbYl1VdGJXOmvr8cQ%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/172/258822587_a80ec49477_square140_square140_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Dax4iWUtuvJc1FpAs2LAZWKI15Q%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/172/258822587_a80ec49477_square140_square140_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=0sWx%2Fv9txOu1e6DpdmEUmxVwXK4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/172/258822587_a80ec49477_square140_square140_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=oQ6ARFaZQlsXU%2Bla0m7wCGx%2FG1o%3D"
+ }
+ }
+ }
+ ],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 407,
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "Had a great lunch with @PaulGandy about initial concepts for the widget 11 software design. See attached. Comments welcome.",
+ "html_body": "Had a great lunch with @PaulGandy about initial concepts for the widget 11 software design. See attached. Comments welcome.
",
+ "action": "",
+ "verb": null,
+ "message_type": "status_message",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/407",
+ "permalink_url": "https://demo.socialcast.com/messages/407",
+ "external_url": null,
+ "created_at": "2016-05-21T22:33:42+00:00",
+ "updated_at": "2016-05-21T23:02:08+00:00",
+ "attachments": [
+ {
+ "id": 102,
+ "url": "https://demo.socialcast.com/attachments/102",
+ "filename": "102-BD-software-design-ideas.pdf",
+ "public_filename": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/102/102-BD-software-design-ideas.pdf?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vc%2FDYA3pbzj4P%2BE9SrcLfO1eEEM%3D",
+ "external_host_type": null,
+ "file_extension": "pdf",
+ "content_type": "application/pdf",
+ "html_filename": "102-BD-software-design-ideas.pdf"
+ },
+ {
+ "id": 111,
+ "url": "https://demo.socialcast.com/attachments/111",
+ "filename": "111-back_of_the_napkin.jpg",
+ "public_filename": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/111/111-back_of_the_napkin.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xk4w%2FsHDwrUMiluw4hy4VJTZPGo%3D",
+ "external_host_type": null,
+ "file_extension": "jpg",
+ "content_type": "image/jpeg",
+ "html_filename": "111-back_of_the_napkin.jpg"
+ }
+ ],
+ "media_files": [
+ {
+ "title": "111-back_of_the_napkin.jpg",
+ "description": null,
+ "thumbnails": {
+ "stream": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/111/111-back_of_the_napkin_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=uvHckeHibb9ro59uFRyNnlj2XdM%3D",
+ "stream_square": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/111/111-back_of_the_napkin_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=TS5fuW3J%2Brmy31fx9a11LPct0d0%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/111/111-back_of_the_napkin_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=yKQBfvBD%2BEydnqJ5%2F058fdKUp%2FQ%3D",
+ "scaled480": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/111/111-back_of_the_napkin_scaled480.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=91gLrfjHIQ77cb101%2Bv0rpPC8k0%3D"
+ },
+ "thumbnail_metadata": {
+ "stream": {
+ "width": 140,
+ "height": 97
+ },
+ "stream_square": {
+ "width": 75,
+ "height": 75
+ },
+ "square45": {
+ "width": 45,
+ "height": 45
+ },
+ "scaled480": {
+ "width": 325,
+ "height": 225
+ }
+ },
+ "page_url": null,
+ "url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/111/111-back_of_the_napkin.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xk4w%2FsHDwrUMiluw4hy4VJTZPGo%3D",
+ "content_type": "image/jpeg",
+ "attachment_id": 111,
+ "external_resource_id": null
+ }
+ ],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [
+ {
+ "name": "code",
+ "url": "https://demo.socialcast.com/topics/code"
+ },
+ {
+ "name": "fyi",
+ "url": "https://demo.socialcast.com/topics/fyi"
+ },
+ {
+ "name": "reference",
+ "url": "https://demo.socialcast.com/topics/reference"
+ }
+ ],
+ "last_interacted_at": 1463871152,
+ "group": {
+ "id": 8,
+ "name": "Widget 11 Product Team",
+ "html_name": "Widget 11 Product Team",
+ "url": "https://demo.socialcast.com/groups/8-widget11productteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 168,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nTkceqAQi%2FuFh1q9RrzePFY8M68%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AjzX55l0j6SdL4Vt%2BLvDWDI%2F1jo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=CfKpd%2Fitn1CyJn0iPvHFMbZz8lE%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=30EMnJ2NXMFoN14kt86jdRzN0T4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AeP4iSV8dKDScCQnG1B9hZ4GNGw%3D"
+ },
+ "username": "Widget11ProductTeam",
+ "groupname": "Widget11ProductTeam",
+ "private": false,
+ "external_contributor": false
+ },
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 23,
+ "name": "Paul Gandy",
+ "html_name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy",
+ "avatars": {
+ "is_system_default": false,
+ "id": 36,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iZ8PkN9bpBmF372tx1tSjWROjkE%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vSlJQJuDAPmQaOLOFk1ymBY2Q4M%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pWpvN4aYWUhCkynIebEwchP%2BkCA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AQnwgMnTv4bUFDu8B1hrRnHwrqU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=5OjmE0QGqDvt3Vi57yanY8z%2FxVU%3D"
+ },
+ "username": "PaulGandy",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Inside Sales Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "PaulGandy"
+ },
+ {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "BobDavis"
+ },
+ {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "MikeWhittington"
+ },
+ {
+ "id": 8,
+ "name": "Widget 11 Product Team",
+ "html_name": "Widget 11 Product Team",
+ "url": "https://demo.socialcast.com/groups/8-widget11productteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 168,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nTkceqAQi%2FuFh1q9RrzePFY8M68%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AjzX55l0j6SdL4Vt%2BLvDWDI%2F1jo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=CfKpd%2Fitn1CyJn0iPvHFMbZz8lE%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=30EMnJ2NXMFoN14kt86jdRzN0T4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AeP4iSV8dKDScCQnG1B9hZ4GNGw%3D"
+ },
+ "username": "Widget11ProductTeam",
+ "private": false,
+ "external_contributor": false,
+ "mention_name": null
+ }
+ ],
+ "thumbnail_url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/111/111-back_of_the_napkin_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=uvHckeHibb9ro59uFRyNnlj2XdM%3D",
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [
+ {
+ "id": 8,
+ "name": "Widget 11 Product Team",
+ "html_name": "Widget 11 Product Team",
+ "url": "https://demo.socialcast.com/groups/8-widget11productteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 168,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nTkceqAQi%2FuFh1q9RrzePFY8M68%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AjzX55l0j6SdL4Vt%2BLvDWDI%2F1jo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=CfKpd%2Fitn1CyJn0iPvHFMbZz8lE%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=30EMnJ2NXMFoN14kt86jdRzN0T4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AeP4iSV8dKDScCQnG1B9hZ4GNGw%3D"
+ },
+ "username": "Widget11ProductTeam",
+ "groupname": "Widget11ProductTeam",
+ "private": false,
+ "external_contributor": false
+ }
+ ],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 5,
+ "comments": [
+ {
+ "id": 64,
+ "url": "https://demo.socialcast.com/api/messages/407/comments/64",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "I like the idea. Have we thought about using the reverse pattern a algorithms that worked well in Widget 9?",
+ "html_body": "I like the idea. Have we thought about using the reverse pattern a algorithms that worked well in Widget 9?
",
+ "created_at": "2016-05-21T22:36:41+00:00",
+ "updated_at": "2016-05-21T22:36:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/407/comments/64",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 65,
+ "url": "https://demo.socialcast.com/api/messages/407/comments/65",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Nice thinking Emily. Using that code base never entered my mind. That is going to save a lot of development time. Thanks for the help.",
+ "html_body": "Nice thinking Emily. Using that code base never entered my mind. That is going to save a lot of development time. Thanks for the help.
",
+ "created_at": "2016-05-21T22:39:41+00:00",
+ "updated_at": "2016-05-21T22:39:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/407/comments/65",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [
+ {
+ "id": 28,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:21:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 1,
+ "thumbnail_url": null
+ },
+ {
+ "id": 66,
+ "url": "https://demo.socialcast.com/api/messages/407/comments/66",
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "html_name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy",
+ "avatars": {
+ "is_system_default": false,
+ "id": 36,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iZ8PkN9bpBmF372tx1tSjWROjkE%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vSlJQJuDAPmQaOLOFk1ymBY2Q4M%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pWpvN4aYWUhCkynIebEwchP%2BkCA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AQnwgMnTv4bUFDu8B1hrRnHwrqU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=5OjmE0QGqDvt3Vi57yanY8z%2FxVU%3D"
+ },
+ "username": "PaulGandy",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Inside Sales Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Another good point to Emily\'s idea of using the reverse a algorithm is that it could help with the server resource issue that we were concerned about. One of the main objectives of that code base was reducing server load to free up resources for other processes. Great suggestion, Emily!",
+ "html_body": "Another good point to Emily\'s idea of using the reverse a algorithm is that it could help with the server resource issue that we were concerned about. One of the main objectives of that code base was reducing server load to free up resources for other processes. Great suggestion, Emily!
",
+ "created_at": "2016-05-21T22:42:41+00:00",
+ "updated_at": "2016-05-21T22:42:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/407/comments/66",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 67,
+ "url": "https://demo.socialcast.com/api/messages/407/comments/67",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Good point Paul. @MikeWhittington, could you send me the reference docs for the reverse a algorithm. I want to get started reviewing the code to see if it will work in this application.",
+ "html_body": "Good point Paul. @MikeWhittington , could you send me the reference docs for the reverse a algorithm. I want to get started reviewing the code to see if it will work in this application.
",
+ "created_at": "2016-05-21T22:45:41+00:00",
+ "updated_at": "2016-05-21T22:45:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/407/comments/67",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 68,
+ "url": "https://demo.socialcast.com/api/messages/407/comments/68",
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Here you go @BobDavis. This is version 7. Version 8 never left beta. #FYI #reference #code",
+ "html_body": "Here you go @BobDavis . This is version 7. Version 8 never left beta. #FYI #reference #code
",
+ "created_at": "2016-05-21T22:48:41+00:00",
+ "updated_at": "2016-05-21T22:48:41+00:00",
+ "attachments": [
+ {
+ "id": 108,
+ "url": "https://demo.socialcast.com/attachments/108",
+ "filename": "108-reverse-a-algorithm-refernece-V7.pdf",
+ "public_filename": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/108/108-reverse-a-algorithm-refernece-V7.pdf?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=JP4%2BXB76kk%2BhCcuJQpZDSDx3NU4%3D",
+ "external_host_type": null,
+ "file_extension": "pdf",
+ "content_type": "application/pdf",
+ "html_filename": "108-reverse-a-algorithm-refernece-V7.pdf"
+ }
+ ],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/407/comments/68",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 48,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T22:21:41+00:00",
+ "unlikable": true
+ },
+ {
+ "id": 52,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson"
+ },
+ "created_at": "2016-05-21T22:30:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 27,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:18:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 26,
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy"
+ },
+ "created_at": "2016-05-21T21:15:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 4,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 406,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Web Conferencing | GoToMeeting",
+ "body": "Here is the link for our Go-To-Meeting account. #sales #meetings",
+ "html_body": "Here is the link for our Go-To-Meeting account. #sales #meetings
",
+ "action": "posted a link",
+ "verb": null,
+ "message_type": "link",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/406-web-conferencing--gotomeeting",
+ "permalink_url": "https://demo.socialcast.com/messages/406-web-conferencing--gotomeeting",
+ "external_url": "http://www.gotomeeting.com/fec/",
+ "created_at": "2016-05-21T22:30:42+00:00",
+ "updated_at": "2016-05-21T23:02:08+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": false,
+ "external_resources": [
+ {
+ "id": 1,
+ "url": "http://www.gotomeeting.com/fec",
+ "title": "Web Conferencing | GoToMeeting",
+ "description": "Reliable, easy, effective web conferencing and online meetings. Work with anyone, anywhere.",
+ "canonical_hashtag": null,
+ "type": null,
+ "source": null,
+ "tags": [],
+ "oembed": {
+ "version": "1.0",
+ "provider_name": "www.gotomeeting.com",
+ "provider_url": "http://www.gotomeeting.com",
+ "url": "http://www.gotomeeting.com/fec/",
+ "title": "Web Conferencing | GoToMeeting",
+ "description": "Reliable, easy, effective web conferencing and online meetings. Work with anyone, anywhere.",
+ "type": "link",
+ "thumbnail_url": "https://n1.cdn.socialcast.com/801245/demo-assets1.socialcast.com/assets/v6/avatars/default_link_stream_square-02bc28ffd8e74998d739c42c5a80523cbb6532af0698e4a091e98f8ce62b79e9.png",
+ "thumbnail_width": 75,
+ "thumbnail_height": 75
+ },
+ "media_files": []
+ }
+ ],
+ "tags": [
+ {
+ "name": "meetings",
+ "url": "https://demo.socialcast.com/topics/meetings"
+ },
+ {
+ "name": "sales",
+ "url": "https://demo.socialcast.com/topics/sales"
+ }
+ ],
+ "last_interacted_at": 1463870252,
+ "group": {
+ "id": 7,
+ "name": "Inside Sales Demonstrations",
+ "html_name": "Inside Sales Demonstrations",
+ "url": "https://demo.socialcast.com/groups/7-insidesalesdemonstrations",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 154,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=cPRNDLu0hR%2B7saYQZPu2MggosHk%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Rq8EWDHnU%2F2iYySiv9g1ublcfLQ%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZlJJRYI6HoEo%2FaXK2b21L43zrzk%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=NeOtqw5FrERmS7kGyZAQCpodB40%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=q94kdxsaxN57%2Fi2nMWaWFseSYSs%3D"
+ },
+ "username": "InsideSalesDemonstrations",
+ "groupname": "InsideSalesDemonstrations",
+ "private": false,
+ "external_contributor": false
+ },
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 7,
+ "name": "Inside Sales Demonstrations",
+ "html_name": "Inside Sales Demonstrations",
+ "url": "https://demo.socialcast.com/groups/7-insidesalesdemonstrations",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 154,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=cPRNDLu0hR%2B7saYQZPu2MggosHk%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Rq8EWDHnU%2F2iYySiv9g1ublcfLQ%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZlJJRYI6HoEo%2FaXK2b21L43zrzk%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=NeOtqw5FrERmS7kGyZAQCpodB40%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=q94kdxsaxN57%2Fi2nMWaWFseSYSs%3D"
+ },
+ "username": "InsideSalesDemonstrations",
+ "private": false,
+ "external_contributor": false,
+ "mention_name": null
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [
+ {
+ "id": 7,
+ "name": "Inside Sales Demonstrations",
+ "html_name": "Inside Sales Demonstrations",
+ "url": "https://demo.socialcast.com/groups/7-insidesalesdemonstrations",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 154,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=cPRNDLu0hR%2B7saYQZPu2MggosHk%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Rq8EWDHnU%2F2iYySiv9g1ublcfLQ%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZlJJRYI6HoEo%2FaXK2b21L43zrzk%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=NeOtqw5FrERmS7kGyZAQCpodB40%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/154/Sales_Up_Graph_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=q94kdxsaxN57%2Fi2nMWaWFseSYSs%3D"
+ },
+ "username": "InsideSalesDemonstrations",
+ "groupname": "InsideSalesDemonstrations",
+ "private": false,
+ "external_contributor": false
+ }
+ ],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 1,
+ "comments": [
+ {
+ "id": 63,
+ "url": "https://demo.socialcast.com/api/messages/406/comments/63",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Thanks Jennifer. Glad it\'s in our company stream. Won\'t lose it anymore.",
+ "html_body": "Thanks Jennifer. Glad it\'s in our company stream. Won\'t lose it anymore.
",
+ "created_at": "2016-05-21T22:33:41+00:00",
+ "updated_at": "2016-05-21T22:33:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/406-web-conferencing--gotomeeting/comments/63",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 404,
+ "user": {
+ "id": 33,
+ "name": "Brian Burke",
+ "html_name": "Brian Burke",
+ "url": "https://demo.socialcast.com/users/33-brianburke",
+ "avatars": {
+ "is_system_default": false,
+ "id": 99,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=HZU%2BkuYB0q%2ByI1UwipRVxSguOOg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wWBgq8AaDuPHOJ0hK4t%2BUwbeK20%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Q2tzQfrVq7I1uaawW%2FNXpzwvrCo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SCNwQyovZaZFL%2BOroyaoTVz65sA%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/99/99-iStock_000002100805XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Fl4o4zuOc%2BUlk4%2Bu%2FBH6SEUOja8%3D"
+ },
+ "username": "BrianBurke",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Operations Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "I just had a great meeting with a client regarding our new Acme Widget 11. They said they loved the new design and really like the improvements in the software interface. It cut the configuration time in half, saving them time and money. @BobDavis great job revising the software. Our customers and the market are really validating the hard work you and your team put into this product.",
+ "html_body": "I just had a great meeting with a client regarding our new Acme Widget 11. They said they loved the new design and really like the improvements in the software interface. It cut the configuration time in half, saving them time and money. @BobDavis great job revising the software. Our customers and the market are really validating the hard work you and your team put into this product.
",
+ "action": "",
+ "verb": null,
+ "message_type": "status_message",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/404",
+ "permalink_url": "https://demo.socialcast.com/messages/404",
+ "external_url": null,
+ "created_at": "2016-05-21T22:24:42+00:00",
+ "updated_at": "2016-05-21T23:02:07+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463870072,
+ "group": {},
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "BobDavis"
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 2,
+ "comments": [
+ {
+ "id": 60,
+ "url": "https://demo.socialcast.com/api/messages/404/comments/60",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Thanks Brian. The team did a great job. Glad to hear that all the hard work and late hours paid off.",
+ "html_body": "Thanks Brian. The team did a great job. Glad to hear that all the hard work and late hours paid off.
",
+ "created_at": "2016-05-21T22:24:41+00:00",
+ "updated_at": "2016-05-21T22:24:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/404/comments/60",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 62,
+ "url": "https://demo.socialcast.com/api/messages/404/comments/62",
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "html_name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy",
+ "avatars": {
+ "is_system_default": false,
+ "id": 36,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iZ8PkN9bpBmF372tx1tSjWROjkE%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vSlJQJuDAPmQaOLOFk1ymBY2Q4M%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pWpvN4aYWUhCkynIebEwchP%2BkCA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AQnwgMnTv4bUFDu8B1hrRnHwrqU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=5OjmE0QGqDvt3Vi57yanY8z%2FxVU%3D"
+ },
+ "username": "PaulGandy",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Inside Sales Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Did they mention anything about the new case design? We were interested in hearing feedback from customers on it.",
+ "html_body": "Did they mention anything about the new case design? We were interested in hearing feedback from customers on it.
",
+ "created_at": "2016-05-21T22:30:41+00:00",
+ "updated_at": "2016-05-21T22:30:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/404/comments/62",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 53,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson"
+ },
+ "created_at": "2016-05-21T22:33:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 46,
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen"
+ },
+ "created_at": "2016-05-21T22:15:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 29,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:24:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 25,
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy"
+ },
+ "created_at": "2016-05-21T21:12:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 24,
+ "user": {
+ "id": 20,
+ "name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely"
+ },
+ "created_at": "2016-05-21T21:09:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 23,
+ "user": {
+ "id": 30,
+ "name": "Stacey Lynch",
+ "url": "https://demo.socialcast.com/users/30-staceylynch"
+ },
+ "created_at": "2016-05-21T21:06:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 22,
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis"
+ },
+ "created_at": "2016-05-21T21:03:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 7,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 405,
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Widget 11 Product Team",
+ "body": "A group for the research and implementation of Widget 10.",
+ "html_body": "A group for the research and implementation of Widget 10.
",
+ "action": "created a new group",
+ "verb": null,
+ "message_type": "new_group",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/405-widget-11-product-team",
+ "permalink_url": "https://demo.socialcast.com/messages/405-widget-11-product-team",
+ "external_url": "https://demo.socialcast.local/groups/8",
+ "created_at": "2016-05-21T22:27:42+00:00",
+ "updated_at": "2016-05-21T23:02:07+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463869893,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [
+ {
+ "extension_type": "group_announcement",
+ "group": {
+ "id": 8,
+ "name": "Widget 11 Product Team",
+ "description": "A group for the research and implementation of Widget 11. ",
+ "url": "https://demo.socialcast.com/groups/8-widget11productteam",
+ "avatars": {
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nTkceqAQi%2FuFh1q9RrzePFY8M68%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AjzX55l0j6SdL4Vt%2BLvDWDI%2F1jo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=CfKpd%2Fitn1CyJn0iPvHFMbZz8lE%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=30EMnJ2NXMFoN14kt86jdRzN0T4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/168/258822587_a80ec49477_square140_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AeP4iSV8dKDScCQnG1B9hZ4GNGw%3D"
+ },
+ "message_type": "creation",
+ "can_join": false,
+ "can_leave": true
+ }
+ }
+ ],
+ "new_group_id": 8,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 399,
+ "user": {
+ "id": 30,
+ "name": "Stacey Lynch",
+ "html_name": "Stacey Lynch",
+ "url": "https://demo.socialcast.com/users/30-staceylynch",
+ "avatars": {
+ "is_system_default": false,
+ "id": 78,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=z01qjk0%2BTBDXLSu9pQ1kyrREDgg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nVXHAtqs8PYFcdJxJrdKxvxXlzA%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SPqtfFsU6XQ3Jac2hvGakOWEFcY%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rvImB6hsqvWIsJnRWieqQ6DMV5c%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8S5wrQGd1VRyXy%2FcsS5gkn2O6gs%3D"
+ },
+ "username": "StaceyLynch",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Director of Sales",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "@MikeWhittington The back office internet is still not working correctly. When doing product demos with customers, the pages lag and often freeze. Are we still waiting on a fix or did it go in? If it did, I don\'t think it is working. #internet",
+ "html_body": "@MikeWhittington The back office internet is still not working correctly. When doing product demos with customers, the pages lag and often freeze. Are we still waiting on a fix or did it go in? If it did, I don\'t think it is working. #internet
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/399",
+ "permalink_url": "https://demo.socialcast.com/messages/399",
+ "external_url": null,
+ "created_at": "2016-05-21T22:09:42+00:00",
+ "updated_at": "2016-05-21T23:02:05+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [
+ {
+ "name": "internet",
+ "url": "https://demo.socialcast.com/topics/internet"
+ }
+ ],
+ "last_interacted_at": 1463869892,
+ "group": {},
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "MikeWhittington"
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 5,
+ "comments": [
+ {
+ "id": 50,
+ "url": "https://demo.socialcast.com/api/messages/399/comments/50",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "I was using this back office earlier today and experienced similar results.",
+ "html_body": "I was using this back office earlier today and experienced similar results.
",
+ "created_at": "2016-05-21T21:54:41+00:00",
+ "updated_at": "2016-05-21T21:54:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/399/comments/50",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 51,
+ "url": "https://demo.socialcast.com/api/messages/399/comments/51",
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "A fix was implemented this afternoon. Shouldn\'t have any issues moving forward.",
+ "html_body": "A fix was implemented this afternoon. Shouldn\'t have any issues moving forward.
",
+ "created_at": "2016-05-21T21:57:41+00:00",
+ "updated_at": "2016-05-21T21:57:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/399/comments/51",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [
+ {
+ "id": 21,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T21:00:41+00:00",
+ "unlikable": true
+ }
+ ],
+ "likes_count": 1,
+ "thumbnail_url": null
+ },
+ {
+ "id": 52,
+ "url": "https://demo.socialcast.com/api/messages/399/comments/52",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Hooray for @MikeWhittington",
+ "html_body": "",
+ "created_at": "2016-05-21T22:00:41+00:00",
+ "updated_at": "2016-05-21T22:00:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/399/comments/52",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 53,
+ "url": "https://demo.socialcast.com/api/messages/399/comments/53",
+ "user": {
+ "id": 30,
+ "name": "Stacey Lynch",
+ "html_name": "Stacey Lynch",
+ "url": "https://demo.socialcast.com/users/30-staceylynch",
+ "avatars": {
+ "is_system_default": false,
+ "id": 78,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=z01qjk0%2BTBDXLSu9pQ1kyrREDgg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nVXHAtqs8PYFcdJxJrdKxvxXlzA%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SPqtfFsU6XQ3Jac2hvGakOWEFcY%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rvImB6hsqvWIsJnRWieqQ6DMV5c%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8S5wrQGd1VRyXy%2FcsS5gkn2O6gs%3D"
+ },
+ "username": "StaceyLynch",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Director of Sales",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Thanks Mike!!",
+ "html_body": "",
+ "created_at": "2016-05-21T22:03:41+00:00",
+ "updated_at": "2016-05-21T22:03:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/399/comments/53",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 61,
+ "url": "https://demo.socialcast.com/api/messages/399/comments/61",
+ "user": {
+ "id": 20,
+ "name": "Lee Mosely",
+ "html_name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely",
+ "avatars": {
+ "is_system_default": false,
+ "id": 15,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lar4A1A%2BIGVT0Jm9BWc%2FZkLQI2E%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=alc2EjX977%2FPhZVZoUQFx6sX1aw%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=qvAEoBNLOmBVNE0APo3Aa9rBih4%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VmuoCQ11CNJSODGSSKRiGIlpaQo%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VrWQo8Mp7%2B%2FSUUwXhY59qBLYezk%3D"
+ },
+ "username": "LeeMosely",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Manufacturing Tech II",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Mike you made my week. The internet issue has been driving me nuts.",
+ "html_body": "Mike you made my week. The internet issue has been driving me nuts.
",
+ "created_at": "2016-05-21T22:27:41+00:00",
+ "updated_at": "2016-05-21T22:27:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/399/comments/61",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 42,
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen"
+ },
+ "created_at": "2016-05-21T22:03:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 37,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:48:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 2,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 403,
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "We are finalizing the new Widget 10 product page on the website. Wanted to get some help on the tweet button.",
+ "html_body": "We are finalizing the new Widget 10 product page on the website. Wanted to get some help on the tweet button.
",
+ "action": "created a poll",
+ "verb": null,
+ "message_type": "poll",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/403",
+ "permalink_url": "https://demo.socialcast.com/messages/403",
+ "external_url": null,
+ "created_at": "2016-05-21T22:21:42+00:00",
+ "updated_at": "2016-05-21T23:02:07+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463869533,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": {
+ "id": 1,
+ "question": "What default twitter phrase should we use on the new Acme Widget 10 website?",
+ "answers": [
+ {
+ "id": 1,
+ "text": "Checkout the new and improved Acme Widget 10",
+ "response_count": 0
+ },
+ {
+ "id": 2,
+ "text": "You won\'t believe what Acme just released... Widget 10",
+ "response_count": 4
+ },
+ {
+ "id": 3,
+ "text": "You will be instantly impressed with Acme\'s new Widget 10 ",
+ "response_count": 2
+ },
+ {
+ "id": 4,
+ "text": "Having a problem with your wireless router? Acme\'s new Widget 10 will solve the problem",
+ "response_count": 1
+ }
+ ],
+ "social_object_id": 403,
+ "my_response_id": 3
+ },
+ "embed": "/polls/1",
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [
+ {
+ "id": 41,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T22:00:41+00:00",
+ "unlikable": true
+ }
+ ],
+ "likes_count": 1,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 402,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Measuring your marketing success - Simply Business podcast",
+ "body": "Great video podcast on \"Measuring Your Marketing Success\" /cc @LindaAllen",
+ "html_body": "Great video podcast on \"Measuring Your Marketing Success\" /cc @LindaAllen
",
+ "action": "posted a link",
+ "verb": null,
+ "message_type": "link",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/402-httpwwwyoutubecomwatchvhbxloeicloi",
+ "permalink_url": "https://demo.socialcast.com/messages/402-measuring-your-marketing-success---simply-business",
+ "external_url": "http://www.youtube.com/watch?v=hbXLOeICLOI",
+ "created_at": "2016-05-21T22:18:42+00:00",
+ "updated_at": "2016-05-21T23:02:07+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": false,
+ "external_resources": [
+ {
+ "id": 27,
+ "url": "http://www.youtube.com/watch?v=hbXLOeICLOI",
+ "title": "Measuring your marketing success - Simply Business podcast",
+ "description": "In this episode of our marketing podcast, we consider how best to measure the performance of your marketing activities. Welcome back to the Simply Business p...",
+ "canonical_hashtag": null,
+ "type": "video",
+ "source": {
+ "name": "YouTube",
+ "url": "http://www.youtube.com/"
+ },
+ "tags": [],
+ "oembed": {
+ "version": "1.0",
+ "provider_name": "YouTube",
+ "provider_url": "http://www.youtube.com/",
+ "url": "http://www.youtube.com/watch?v=hbXLOeICLOI",
+ "title": "Measuring your marketing success - Simply Business podcast",
+ "description": "In this episode of our marketing podcast, we consider how best to measure the performance of your marketing activities. Welcome back to the Simply Business p...",
+ "type": "video",
+ "thumbnail_url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/25/hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8EulP9Srg3w9ugXu391ywuEJIEw%3D",
+ "html": "VIDEO ",
+ "width": 459,
+ "height": 344,
+ "thumbnail_height": 75,
+ "author_name": "Simply Business",
+ "thumbnail_width": 75,
+ "author_url": "http://www.youtube.com/user/SimplyBusiness"
+ },
+ "media_files": [
+ {
+ "canonical": true,
+ "title": "Measuring your marketing success - Simply Business podcast",
+ "description": "In this episode of our marketing podcast, we consider how best to measure the performance of your marketing activities. Welcome back to the Simply Business p...",
+ "thumbnails": {
+ "stream": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/25/hqdefault_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=UB%2BWQGJ3Q5l%2F0X40P1vnV0kDXc8%3D",
+ "stream_square": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/25/hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8EulP9Srg3w9ugXu391ywuEJIEw%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/25/hqdefault_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=KAZy8sBfPm0dgOv%2B%2BncPnYbOTN8%3D",
+ "scaled480": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/25/hqdefault_scaled480.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=X6CXXdMaCbeGxYtFtbJPS4J6cgE%3D"
+ },
+ "thumbnail_metadata": {
+ "stream": {
+ "width": 100,
+ "height": 75
+ },
+ "stream_square": {
+ "width": 75,
+ "height": 75
+ },
+ "square45": {
+ "width": 45,
+ "height": 45
+ },
+ "scaled480": {
+ "width": 480,
+ "height": 360
+ }
+ },
+ "page_url": "http://www.youtube.com/watch?v=hbXLOeICLOI",
+ "url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/25/hqdefault.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FeoRGX%2F3iQThp5C0jPdCzsXknms%3D",
+ "content_type": "image/jpeg",
+ "attachment_id": null
+ }
+ ]
+ }
+ ],
+ "tags": [],
+ "last_interacted_at": 1463869532,
+ "group": {},
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "LindaAllen"
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": "http://www.youtube.com/v/hbXLOeICLOI&autoplay=1",
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 3,
+ "comments": [
+ {
+ "id": 57,
+ "url": "https://demo.socialcast.com/api/messages/402/comments/57",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Have we ever thought about doing a podcast? A buddy of mine at another company does them, he says that they have had a lot of success with them. Just a thought.",
+ "html_body": "Have we ever thought about doing a podcast? A buddy of mine at another company does them, he says that they have had a lot of success with them. Just a thought.
",
+ "created_at": "2016-05-21T22:15:41+00:00",
+ "updated_at": "2016-05-21T22:15:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/402-measuring-your-marketing-success---simply-business/comments/57",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 58,
+ "url": "https://demo.socialcast.com/api/messages/402/comments/58",
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Great idea Bob. This has been something we have been tossing around in the Marketing department in our last few meetings.",
+ "html_body": "Great idea Bob. This has been something we have been tossing around in the Marketing department in our last few meetings.
",
+ "created_at": "2016-05-21T22:18:41+00:00",
+ "updated_at": "2016-05-21T22:18:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/402-measuring-your-marketing-success---simply-business/comments/58",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 59,
+ "url": "https://demo.socialcast.com/api/messages/402/comments/59",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Sounds great. I know the software engineering team would be interested in doing some for our development community.",
+ "html_body": "Sounds great. I know the software engineering team would be interested in doing some for our development community.
",
+ "created_at": "2016-05-21T22:21:41+00:00",
+ "updated_at": "2016-05-21T22:21:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/402-measuring-your-marketing-success---simply-business/comments/59",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 47,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T22:18:41+00:00",
+ "unlikable": true
+ },
+ {
+ "id": 58,
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis"
+ },
+ "created_at": "2016-05-21T22:48:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 57,
+ "user": {
+ "id": 20,
+ "name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely"
+ },
+ "created_at": "2016-05-21T22:45:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 43,
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen"
+ },
+ "created_at": "2016-05-21T22:06:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 36,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:45:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 33,
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy"
+ },
+ "created_at": "2016-05-21T21:36:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 6,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 401,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "@LindaAllen do you have the minutes from this weeks marketing meeting?",
+ "html_body": "@LindaAllen do you have the minutes from this weeks marketing meeting?
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/401",
+ "permalink_url": "https://demo.socialcast.com/messages/401",
+ "external_url": null,
+ "created_at": "2016-05-21T22:15:42+00:00",
+ "updated_at": "2016-05-21T23:02:06+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463869173,
+ "group": {},
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "LindaAllen"
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": false,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": true,
+ "deletable": true,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 1,
+ "comments": [
+ {
+ "id": 54,
+ "url": "https://demo.socialcast.com/api/messages/401/comments/54",
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "See attached minutes.",
+ "html_body": "",
+ "created_at": "2016-05-21T22:06:41+00:00",
+ "updated_at": "2016-05-21T22:06:41+00:00",
+ "attachments": [
+ {
+ "id": 101,
+ "url": "https://demo.socialcast.com/attachments/101",
+ "filename": "101-Marketing_Minutes.pdf",
+ "public_filename": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/101/101-Marketing_Minutes.pdf?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=m4txgofQPBxhiMqD4GSkugbyRL4%3D",
+ "external_host_type": null,
+ "file_extension": "pdf",
+ "content_type": "inode/x-empty",
+ "html_filename": "101-Marketing_Minutes.pdf"
+ }
+ ],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/401/comments/54",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 44,
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen"
+ },
+ "created_at": "2016-05-21T22:09:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 34,
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy"
+ },
+ "created_at": "2016-05-21T21:39:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 2,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 400,
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "Drafting the new email campaign proposal. @StaceyLynch what products would you like to focus on for this campaign? #marketing #promotion",
+ "html_body": "Drafting the new email campaign proposal. @StaceyLynch what products would you like to focus on for this campaign? #marketing #promotion
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/400",
+ "permalink_url": "https://demo.socialcast.com/messages/400",
+ "external_url": null,
+ "created_at": "2016-05-21T22:12:42+00:00",
+ "updated_at": "2016-05-21T23:02:06+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [
+ {
+ "name": "marketing",
+ "url": "https://demo.socialcast.com/topics/marketing"
+ },
+ {
+ "name": "promotion",
+ "url": "https://demo.socialcast.com/topics/promotion"
+ }
+ ],
+ "last_interacted_at": 1463868993,
+ "group": {},
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 30,
+ "name": "Stacey Lynch",
+ "html_name": "Stacey Lynch",
+ "url": "https://demo.socialcast.com/users/30-staceylynch",
+ "avatars": {
+ "is_system_default": false,
+ "id": 78,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=z01qjk0%2BTBDXLSu9pQ1kyrREDgg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nVXHAtqs8PYFcdJxJrdKxvxXlzA%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SPqtfFsU6XQ3Jac2hvGakOWEFcY%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rvImB6hsqvWIsJnRWieqQ6DMV5c%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8S5wrQGd1VRyXy%2FcsS5gkn2O6gs%3D"
+ },
+ "username": "StaceyLynch",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Director of Sales",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "StaceyLynch"
+ },
+ {
+ "id": 23,
+ "name": "Paul Gandy",
+ "html_name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy",
+ "avatars": {
+ "is_system_default": false,
+ "id": 36,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iZ8PkN9bpBmF372tx1tSjWROjkE%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vSlJQJuDAPmQaOLOFk1ymBY2Q4M%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pWpvN4aYWUhCkynIebEwchP%2BkCA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AQnwgMnTv4bUFDu8B1hrRnHwrqU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=5OjmE0QGqDvt3Vi57yanY8z%2FxVU%3D"
+ },
+ "username": "PaulGandy",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Inside Sales Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "PaulGandy"
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 2,
+ "comments": [
+ {
+ "id": 55,
+ "url": "https://demo.socialcast.com/api/messages/400/comments/55",
+ "user": {
+ "id": 30,
+ "name": "Stacey Lynch",
+ "html_name": "Stacey Lynch",
+ "url": "https://demo.socialcast.com/users/30-staceylynch",
+ "avatars": {
+ "is_system_default": false,
+ "id": 78,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=z01qjk0%2BTBDXLSu9pQ1kyrREDgg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=nVXHAtqs8PYFcdJxJrdKxvxXlzA%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SPqtfFsU6XQ3Jac2hvGakOWEFcY%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=rvImB6hsqvWIsJnRWieqQ6DMV5c%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/78/iStock_000005807416XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8S5wrQGd1VRyXy%2FcsS5gkn2O6gs%3D"
+ },
+ "username": "StaceyLynch",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Director of Sales",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Let\'s feature the Acme Widget 1, Acme Widget 10 and Acme Widget 12. Those are all key products that we need to continue to push into the market. When is this campaign slated to launch. I want to be sure the sales team is prepared. cc @PaulGandy",
+ "html_body": "Let\'s feature the Acme Widget 1, Acme Widget 10 and Acme Widget 12. Those are all key products that we need to continue to push into the market. When is this campaign slated to launch. I want to be sure the sales team is prepared. cc @PaulGandy
",
+ "created_at": "2016-05-21T22:09:41+00:00",
+ "updated_at": "2016-05-21T22:09:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/400/comments/55",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [
+ {
+ "id": 38,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:51:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 1,
+ "thumbnail_url": null
+ },
+ {
+ "id": 56,
+ "url": "https://demo.socialcast.com/api/messages/400/comments/56",
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Thanks Stacey. We are planning on kicking this campaign off at the end of Q3. I will have an outline of the campaign for your team in a few weeks.",
+ "html_body": "Thanks Stacey. We are planning on kicking this campaign off at the end of Q3. I will have an outline of the campaign for your team in a few weeks.
",
+ "created_at": "2016-05-21T22:12:41+00:00",
+ "updated_at": "2016-05-21T22:12:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/400/comments/56",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 39,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:54:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 1,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 398,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "@BobDavis the new SSL certificate has been added to the website. It is registered to Acme Corp. Inc. Let me know if you have any questions / comments.",
+ "html_body": "@BobDavis the new SSL certificate has been added to the website. It is registered to Acme Corp. Inc. Let me know if you have any questions / comments.
",
+ "action": "",
+ "verb": null,
+ "message_type": "status_message",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/398",
+ "permalink_url": "https://demo.socialcast.com/messages/398",
+ "external_url": null,
+ "created_at": "2016-05-21T22:06:42+00:00",
+ "updated_at": "2016-05-21T23:02:05+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463868633,
+ "group": {},
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "BobDavis"
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 2,
+ "comments": [
+ {
+ "id": 48,
+ "url": "https://demo.socialcast.com/api/messages/398/comments/48",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Thanks Mike. Will let you know if I have any questions.",
+ "html_body": "Thanks Mike. Will let you know if I have any questions.
",
+ "created_at": "2016-05-21T21:48:41+00:00",
+ "updated_at": "2016-05-21T21:48:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/398/comments/48",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 49,
+ "url": "https://demo.socialcast.com/api/messages/398/comments/49",
+ "user": {
+ "id": 22,
+ "name": "Marshall Sellers",
+ "html_name": "Marshall Sellers",
+ "url": "https://demo.socialcast.com/users/22-marshallsellers",
+ "avatars": {
+ "is_system_default": false,
+ "id": 29,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=L%2BwR6KamG3IQJ%2F8R5vlzDW5JImQ%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=HwK6YonRIqTW9GW5255DI6w2Hd4%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=HzGVNvxw4OZXMooNoW77BHnUH%2B4%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FxOD8ZcstD%2FuzW%2Fue0fbuK3gQl8%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/29/29-iStock_000003885835XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=0PpnTic6prZBSUeuTkFUdVwjPoo%3D"
+ },
+ "username": "MarshallSellers",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Manager -- Finance",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "What was the final cost on this SSL certificate?",
+ "html_body": "What was the final cost on this SSL certificate?
",
+ "created_at": "2016-05-21T21:51:41+00:00",
+ "updated_at": "2016-05-21T21:51:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/398/comments/49",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 394,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "Anyone have the latest sales deck? Meeting with a potential customer this afternoon. #help #sales",
+ "html_body": "Anyone have the latest sales deck? Meeting with a potential customer this afternoon. #help #sales
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/394",
+ "permalink_url": "https://demo.socialcast.com/messages/394",
+ "external_url": null,
+ "created_at": "2016-05-21T22:03:42+00:00",
+ "updated_at": "2016-05-21T23:02:05+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [
+ {
+ "name": "help",
+ "url": "https://demo.socialcast.com/topics/help"
+ },
+ {
+ "name": "sales",
+ "url": "https://demo.socialcast.com/topics/sales"
+ },
+ {
+ "name": "salesdeck",
+ "url": "https://demo.socialcast.com/topics/salesdeck"
+ },
+ {
+ "name": "version4",
+ "url": "https://demo.socialcast.com/topics/version4"
+ }
+ ],
+ "last_interacted_at": 1463868453,
+ "group": {},
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "LindaAllen"
+ },
+ {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "EmilyJames"
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": false,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": true,
+ "deletable": true,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 2,
+ "comments": [
+ {
+ "id": 44,
+ "url": "https://demo.socialcast.com/api/messages/394/comments/44",
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "@LindaAllen can you send the latest sales deck to Emily when you get a chance. Thanks",
+ "html_body": "@LindaAllen can you send the latest sales deck to Emily when you get a chance. Thanks
",
+ "created_at": "2016-05-21T21:36:41+00:00",
+ "updated_at": "2016-05-21T21:36:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/394/comments/44",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 47,
+ "url": "https://demo.socialcast.com/api/messages/394/comments/47",
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "@EmilyJames see attached. This is revision 4. Please be sure to discard previous version. #salesdeck #sales #version4",
+ "html_body": "@EmilyJames see attached. This is revision 4. Please be sure to discard previous version. #salesdeck #sales #version4
",
+ "created_at": "2016-05-21T21:45:41+00:00",
+ "updated_at": "2016-05-21T21:45:41+00:00",
+ "attachments": [
+ {
+ "id": 100,
+ "url": "https://demo.socialcast.com/attachments/100",
+ "filename": "100-acme_corp_sales_deck_v4_LA.pdf",
+ "public_filename": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/100/100-acme_corp_sales_deck_v4_LA.pdf?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=k5iyKnUHKP7BjpsK7jyYodgEUqk%3D",
+ "external_host_type": null,
+ "file_extension": "pdf",
+ "content_type": "inode/x-empty",
+ "html_filename": "100-acme_corp_sales_deck_v4_LA.pdf"
+ }
+ ],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/394/comments/47",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [
+ {
+ "id": 55,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson"
+ },
+ "created_at": "2016-05-21T22:39:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 1,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 54,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson"
+ },
+ "created_at": "2016-05-21T22:36:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 45,
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen"
+ },
+ "created_at": "2016-05-21T22:12:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 30,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:27:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 3,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 393,
+ "user": {
+ "id": 19,
+ "name": "Production Bot #145",
+ "html_name": "Production Bot #145",
+ "url": "https://demo.socialcast.com/users/19-productionbot145",
+ "avatars": {
+ "is_system_default": false,
+ "id": 133,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SQSm4NwY8O5w4CVB%2FEbB3vg65k8%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vvJHdcoYc0MrD5Xdz3wupxkcSwg%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=37ARrSrvKAFSWMM9cr%2Bus8d5%2FaA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2B3qnk%2BHfmoFWq7eptOrKOpH5KmU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=oakAfjciyk2%2Fj4FjDgP7BB9BZtE%3D"
+ },
+ "username": "ProductionBot145",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "150 Ton Press",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "Weekly Production Report:\n\n13221 units\n2 inspection rejects\n0 faults",
+ "html_body": "\n
Weekly Production Report:
\n\n
13221 units \n2 inspection rejects \n0 faults
\n
",
+ "action": "",
+ "verb": null,
+ "message_type": "status_message",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/393",
+ "permalink_url": "https://demo.socialcast.com/messages/393",
+ "external_url": null,
+ "created_at": "2016-05-21T22:00:42+00:00",
+ "updated_at": "2016-05-21T23:02:04+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463868273,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 392,
+ "user": {
+ "id": 19,
+ "name": "Production Bot #145",
+ "html_name": "Production Bot #145",
+ "url": "https://demo.socialcast.com/users/19-productionbot145",
+ "avatars": {
+ "is_system_default": false,
+ "id": 133,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SQSm4NwY8O5w4CVB%2FEbB3vg65k8%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vvJHdcoYc0MrD5Xdz3wupxkcSwg%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=37ARrSrvKAFSWMM9cr%2Bus8d5%2FaA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2B3qnk%2BHfmoFWq7eptOrKOpH5KmU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=oakAfjciyk2%2Fj4FjDgP7BB9BZtE%3D"
+ },
+ "username": "ProductionBot145",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "150 Ton Press",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "Fault report:\n\nCode 647",
+ "html_body": "\n
Fault report:
\n\n
Code 647
\n
",
+ "action": "",
+ "verb": null,
+ "message_type": "status_message",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/392",
+ "permalink_url": "https://demo.socialcast.com/messages/392",
+ "external_url": null,
+ "created_at": "2016-05-21T21:57:42+00:00",
+ "updated_at": "2016-05-21T23:02:04+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463868093,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 391,
+ "user": {
+ "id": 19,
+ "name": "Production Bot #145",
+ "html_name": "Production Bot #145",
+ "url": "https://demo.socialcast.com/users/19-productionbot145",
+ "avatars": {
+ "is_system_default": false,
+ "id": 133,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SQSm4NwY8O5w4CVB%2FEbB3vg65k8%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vvJHdcoYc0MrD5Xdz3wupxkcSwg%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=37ARrSrvKAFSWMM9cr%2Bus8d5%2FaA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2B3qnk%2BHfmoFWq7eptOrKOpH5KmU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=oakAfjciyk2%2Fj4FjDgP7BB9BZtE%3D"
+ },
+ "username": "ProductionBot145",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "150 Ton Press",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "Fault report:\n\nCode 645",
+ "html_body": "\n
Fault report:
\n\n
Code 645
\n
",
+ "action": "",
+ "verb": null,
+ "message_type": "status_message",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/391",
+ "permalink_url": "https://demo.socialcast.com/messages/391",
+ "external_url": null,
+ "created_at": "2016-05-21T21:54:42+00:00",
+ "updated_at": "2016-05-21T23:02:04+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463867913,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 387,
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Presentation to General Vehicles today",
+ "body": "This afternoon, I\'m talking to Aaron Washington at GV about our behind-the-firewall solution. Our data is attached. Does anyone have recommendations about solidifying our partnership?",
+ "html_body": "This afternoon, I\'m talking to Aaron Washington at GV about our behind-the-firewall solution. Our data is attached. Does anyone have recommendations about solidifying our partnership?
",
+ "action": "",
+ "verb": null,
+ "message_type": "status_message",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/387-presentation-to-general-vehicles-today",
+ "permalink_url": "https://demo.socialcast.com/messages/387-presentation-to-general-vehicles-today",
+ "external_url": null,
+ "created_at": "2016-05-21T21:45:42+00:00",
+ "updated_at": "2016-05-21T23:02:03+00:00",
+ "attachments": [
+ {
+ "id": 88,
+ "url": "https://demo.socialcast.com/attachments/88",
+ "filename": "88-On_Premise_Sales_Information.pdf",
+ "public_filename": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/88/88-On_Premise_Sales_Information.pdf?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=28jLqxXZ9EBJHZlp%2FuVEC9o4Xbc%3D",
+ "external_host_type": null,
+ "file_extension": "pdf",
+ "content_type": "application/pdf",
+ "html_filename": "88-On_Premise_Sales_Information.pdf"
+ }
+ ],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463867373,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 1,
+ "comments": [
+ {
+ "id": 43,
+ "url": "https://demo.socialcast.com/api/messages/387/comments/43",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "I recommend showing them our SaaS security sheet too. Last year I spoke with Amanda Wang at GV and she was interested in understanding all of our security features. Good luck!",
+ "html_body": "I recommend showing them our SaaS security sheet too. Last year I spoke with Amanda Wang at GV and she was interested in understanding all of our security features. Good luck!
",
+ "created_at": "2016-05-21T21:33:41+00:00",
+ "updated_at": "2016-05-21T21:33:41+00:00",
+ "attachments": [
+ {
+ "id": 87,
+ "url": "https://demo.socialcast.com/attachments/87",
+ "filename": "87-Socialcast_Data_Security_SaaS.pdf",
+ "public_filename": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/87/87-Socialcast_Data_Security_SaaS.pdf?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lptuyxCt69c%2FLU4PuLoovPlAzlQ%3D",
+ "external_host_type": null,
+ "file_extension": "pdf",
+ "content_type": "application/pdf",
+ "html_filename": "87-Socialcast_Data_Security_SaaS.pdf"
+ }
+ ],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/387-presentation-to-general-vehicles-today/comments/43",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [
+ {
+ "id": 35,
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy"
+ },
+ "created_at": "2016-05-21T21:42:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 1,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 32,
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy"
+ },
+ "created_at": "2016-05-21T21:33:41+00:00",
+ "unlikable": false
+ },
+ {
+ "id": 31,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:30:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 2,
+ "shared_message": null,
+ "commentable": true
+ }
+ ],
+ "messages_next_page": 2
+}'
+
+MESSAGES_PG_2 = '{
+ "messages": [
+ {
+ "id": 386,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "Offsite today representing Acme at the marketing tradeshow. Our booth looks great!",
+ "html_body": "Offsite today representing Acme at the marketing tradeshow. Our booth looks great!
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/386",
+ "permalink_url": "https://demo.socialcast.com/messages/386",
+ "external_url": null,
+ "created_at": "2016-05-21T21:42:42+00:00",
+ "updated_at": "2016-05-21T23:02:03+00:00",
+ "attachments": [
+ {
+ "id": 89,
+ "url": "https://demo.socialcast.com/attachments/89",
+ "filename": "89-Booth.jpg",
+ "public_filename": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/89/89-Booth.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=q8ifH2vwF77PpnhmGO3WjzMo%2Bjo%3D",
+ "external_host_type": null,
+ "file_extension": "jpg",
+ "content_type": "image/jpeg",
+ "html_filename": "89-Booth.jpg"
+ }
+ ],
+ "media_files": [
+ {
+ "title": "89-Booth.jpg",
+ "description": null,
+ "thumbnails": {
+ "stream": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/89/89-Booth_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wD5l59G323TEpG1EeEduzo0brdI%3D",
+ "stream_square": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/89/89-Booth_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=TdWe4UwIWpkyq0lm0HAUBKFDYo8%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/89/89-Booth_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=UdA0CPsTdPaUw8o%2FXulV5hSkb84%3D",
+ "scaled480": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/89/89-Booth_scaled480.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DBQjscnCKmvfKAd1fCaKr9EQIow%3D"
+ },
+ "thumbnail_metadata": {
+ "stream": {
+ "width": 105,
+ "height": 140
+ },
+ "stream_square": {
+ "width": 75,
+ "height": 75
+ },
+ "square45": {
+ "width": 45,
+ "height": 45
+ },
+ "scaled480": {
+ "width": 360,
+ "height": 480
+ }
+ },
+ "page_url": null,
+ "url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/89/89-Booth.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=q8ifH2vwF77PpnhmGO3WjzMo%2Bjo%3D",
+ "content_type": "image/jpeg",
+ "attachment_id": 89,
+ "external_resource_id": null
+ }
+ ],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463867193,
+ "group": {
+ "id": 1,
+ "name": "IT Professionals",
+ "html_name": "IT Professionals",
+ "url": "https://demo.socialcast.com/groups/1-itprofessionals",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 113,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dvTZw2Njrnk7lP2j8lyucCiJV4g%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Vozld%2BNTx35gPpjpp8Eh7TbbB7I%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vvX5jcChIFAWeri0%2FgZVbLzBEJA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vP8QIywQ66E6Swd5N%2FralABVma4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Kbob08no%2BiRU2MMQzh0BfH9AOQs%3D"
+ },
+ "username": "ITProfessionals",
+ "groupname": "ITProfessionals",
+ "private": true,
+ "external_contributor": false
+ },
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 1,
+ "name": "IT Professionals",
+ "html_name": "IT Professionals",
+ "url": "https://demo.socialcast.com/groups/1-itprofessionals",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 113,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dvTZw2Njrnk7lP2j8lyucCiJV4g%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Vozld%2BNTx35gPpjpp8Eh7TbbB7I%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vvX5jcChIFAWeri0%2FgZVbLzBEJA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vP8QIywQ66E6Swd5N%2FralABVma4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Kbob08no%2BiRU2MMQzh0BfH9AOQs%3D"
+ },
+ "username": "ITProfessionals",
+ "private": true,
+ "external_contributor": false,
+ "mention_name": null
+ }
+ ],
+ "thumbnail_url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/attachments/89/89-Booth_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wD5l59G323TEpG1EeEduzo0brdI%3D",
+ "player_url": null,
+ "player_params": null,
+ "likable": false,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": true,
+ "deletable": true,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "Android",
+ "url": "https://demo.socialcast.com/apps/android",
+ "formal_name": "Android App",
+ "id": "android"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [
+ {
+ "id": 1,
+ "name": "IT Professionals",
+ "html_name": "IT Professionals",
+ "url": "https://demo.socialcast.com/groups/1-itprofessionals",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 113,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dvTZw2Njrnk7lP2j8lyucCiJV4g%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Vozld%2BNTx35gPpjpp8Eh7TbbB7I%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vvX5jcChIFAWeri0%2FgZVbLzBEJA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vP8QIywQ66E6Swd5N%2FralABVma4%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/113/Dell00000115948-DellXPS700SeriesDesktopComputer-large.jpeg_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Kbob08no%2BiRU2MMQzh0BfH9AOQs%3D"
+ },
+ "username": "ITProfessionals",
+ "groupname": "ITProfessionals",
+ "private": true,
+ "external_contributor": false
+ }
+ ],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 280,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "leaving for Interop/Software2010. See you in Vegas!",
+ "body": "",
+ "html_body": "
",
+ "action": "posted a message on Twitter",
+ "verb": "posted",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/280-leaving-for-interopsoftware2010-see-you-in-vegas",
+ "permalink_url": "https://demo.socialcast.com/messages/280-leaving-for-interopsoftware2010-see-you-in-vegas",
+ "external_url": null,
+ "created_at": "2016-05-21T19:15:42+00:00",
+ "updated_at": "2016-05-21T23:01:51+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463867192,
+ "group": {},
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "EmilyJames"
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 2,
+ "comments": [
+ {
+ "id": 45,
+ "url": "https://demo.socialcast.com/api/messages/280/comments/45",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Can\'t wait for this show. Last year we closed 115 deals. Looking forward to another smashing success this year.",
+ "html_body": "Can\'t wait for this show. Last year we closed 115 deals. Looking forward to another smashing success this year.
",
+ "created_at": "2016-05-21T21:39:41+00:00",
+ "updated_at": "2016-05-21T21:39:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/280-leaving-for-interopsoftware2010-see-you-in-vegas/comments/45",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 46,
+ "url": "https://demo.socialcast.com/api/messages/280/comments/46",
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Sounds good @EmilyJames. When are you checking into your hotel? We should try and grab a late dinner to discuss strategy for this show.",
+ "html_body": "Sounds good @EmilyJames . When are you checking into your hotel? We should try and grab a late dinner to discuss strategy for this show.
",
+ "created_at": "2016-05-21T21:42:41+00:00",
+ "updated_at": "2016-05-21T21:42:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/280-leaving-for-interopsoftware2010-see-you-in-vegas/comments/46",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 20,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T20:57:41+00:00",
+ "unlikable": true
+ }
+ ],
+ "likes_count": 1,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 384,
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "html_name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy",
+ "avatars": {
+ "is_system_default": false,
+ "id": 36,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iZ8PkN9bpBmF372tx1tSjWROjkE%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vSlJQJuDAPmQaOLOFk1ymBY2Q4M%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pWpvN4aYWUhCkynIebEwchP%2BkCA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AQnwgMnTv4bUFDu8B1hrRnHwrqU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=5OjmE0QGqDvt3Vi57yanY8z%2FxVU%3D"
+ },
+ "username": "PaulGandy",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Inside Sales Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Does Saturday practice work for everyone? Be at the field at 9am!",
+ "body": "",
+ "html_body": "
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/384-does-saturday-practice-work-for-everyone-be-at-the",
+ "permalink_url": "https://demo.socialcast.com/messages/384-does-saturday-practice-work-for-everyone-be-at-the",
+ "external_url": null,
+ "created_at": "2016-05-21T21:36:42+00:00",
+ "updated_at": "2016-05-21T23:02:03+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463866833,
+ "group": {
+ "id": 2,
+ "name": "Acme Corp Softball Team",
+ "html_name": "Acme Corp Softball Team",
+ "url": "https://demo.socialcast.com/groups/2-acmecorpsoftballteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 118,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lIjmcvquQq%2F2G0zwHRCT8madLTI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8WvM2laIR%2BPoMWa6oOCEeCV%2BmFM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iYbilSyk%2BGk%2FgGR8uh25t7iqf8I%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=csmg1J%2F6IkVMTPQqyU6B%2F36yJ5s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SudKigPS4Zp9ocp9D0PoenWcAis%3D"
+ },
+ "username": "AcmeCorpSoftballTeam",
+ "groupname": "AcmeCorpSoftballTeam",
+ "private": false,
+ "external_contributor": false
+ },
+ "category_id": null,
+ "recipients": [
+ {
+ "id": 23,
+ "name": "Paul Gandy",
+ "html_name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy",
+ "avatars": {
+ "is_system_default": false,
+ "id": 36,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iZ8PkN9bpBmF372tx1tSjWROjkE%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vSlJQJuDAPmQaOLOFk1ymBY2Q4M%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pWpvN4aYWUhCkynIebEwchP%2BkCA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AQnwgMnTv4bUFDu8B1hrRnHwrqU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=5OjmE0QGqDvt3Vi57yanY8z%2FxVU%3D"
+ },
+ "username": "PaulGandy",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Inside Sales Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null,
+ "mention_name": "PaulGandy"
+ },
+ {
+ "id": 2,
+ "name": "Acme Corp Softball Team",
+ "html_name": "Acme Corp Softball Team",
+ "url": "https://demo.socialcast.com/groups/2-acmecorpsoftballteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 118,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lIjmcvquQq%2F2G0zwHRCT8madLTI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8WvM2laIR%2BPoMWa6oOCEeCV%2BmFM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iYbilSyk%2BGk%2FgGR8uh25t7iqf8I%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=csmg1J%2F6IkVMTPQqyU6B%2F36yJ5s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SudKigPS4Zp9ocp9D0PoenWcAis%3D"
+ },
+ "username": "AcmeCorpSoftballTeam",
+ "private": false,
+ "external_contributor": false,
+ "mention_name": null
+ }
+ ],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "web",
+ "formal_name": "Web App",
+ "id": "web"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [
+ {
+ "id": 2,
+ "name": "Acme Corp Softball Team",
+ "html_name": "Acme Corp Softball Team",
+ "url": "https://demo.socialcast.com/groups/2-acmecorpsoftballteam",
+ "type": "Group",
+ "avatars": {
+ "is_system_default": false,
+ "id": 118,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lIjmcvquQq%2F2G0zwHRCT8madLTI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8WvM2laIR%2BPoMWa6oOCEeCV%2BmFM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iYbilSyk%2BGk%2FgGR8uh25t7iqf8I%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=csmg1J%2F6IkVMTPQqyU6B%2F36yJ5s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/118/softball_image_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SudKigPS4Zp9ocp9D0PoenWcAis%3D"
+ },
+ "username": "AcmeCorpSoftballTeam",
+ "groupname": "AcmeCorpSoftballTeam",
+ "private": false,
+ "external_contributor": false
+ }
+ ],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 2,
+ "comments": [
+ {
+ "id": 41,
+ "url": "https://demo.socialcast.com/api/messages/384/comments/41",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Works for me. See everyone there.",
+ "html_body": "Works for me. See everyone there.
",
+ "created_at": "2016-05-21T21:27:41+00:00",
+ "updated_at": "2016-05-21T21:27:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/384-does-saturday-practice-work-for-everyone-be-at-the/comments/41",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 42,
+ "url": "https://demo.socialcast.com/api/messages/384/comments/42",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "@PaulGandy Thanks for coordinating this team building event!",
+ "html_body": "@PaulGandy Thanks for coordinating this team building event!
",
+ "created_at": "2016-05-21T21:30:41+00:00",
+ "updated_at": "2016-05-21T21:30:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/384-does-saturday-practice-work-for-everyone-be-at-the/comments/42",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [
+ {
+ "id": 18,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T20:54:41+00:00",
+ "unlikable": true
+ },
+ {
+ "id": 40,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington"
+ },
+ "created_at": "2016-05-21T21:57:41+00:00",
+ "unlikable": false
+ }
+ ],
+ "likes_count": 2,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 344,
+ "user": {
+ "id": 19,
+ "name": "Production Bot #145",
+ "html_name": "Production Bot #145",
+ "url": "https://demo.socialcast.com/users/19-productionbot145",
+ "avatars": {
+ "is_system_default": false,
+ "id": 133,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=SQSm4NwY8O5w4CVB%2FEbB3vg65k8%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vvJHdcoYc0MrD5Xdz3wupxkcSwg%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=37ARrSrvKAFSWMM9cr%2Bus8d5%2FaA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2B3qnk%2BHfmoFWq7eptOrKOpH5KmU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/133/133-bot_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=oakAfjciyk2%2Fj4FjDgP7BB9BZtE%3D"
+ },
+ "username": "ProductionBot145",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "150 Ton Press",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "",
+ "body": "Weekly Production Report:\n\n15420 units\n6 inspection rejects\n3 faults",
+ "html_body": "\n
Weekly Production Report:
\n\n
15420 units \n6 inspection rejects \n3 faults
\n
",
+ "action": "bookmarked a page on Delicious",
+ "verb": "bookmarked",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/344",
+ "permalink_url": "https://demo.socialcast.com/messages/344",
+ "external_url": null,
+ "created_at": "2016-05-21T21:33:42+00:00",
+ "updated_at": "2016-05-21T23:02:03+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463866653,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [
+ {
+ "id": 17,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T20:51:41+00:00",
+ "unlikable": true
+ }
+ ],
+ "likes_count": 1,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 330,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Using MacPorts(DarwinPorts) to install Ruby on Rails, MySQL, Subversion, Capistrano and Mongrel on Mac OS X",
+ "body": "",
+ "html_body": "
",
+ "action": "bookmarked a page on Delicious",
+ "verb": "bookmarked",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/330-using-macportsdarwinports-to-install-ruby-on-rails",
+ "permalink_url": "https://demo.socialcast.com/messages/330-using-macportsdarwinports-to-install-ruby-on-rails",
+ "external_url": "http://paulsturgess.co.uk/articles/show/46-using-macportsdarwinports-to-install-ruby-on-rails-mysql-subversion-capistrano-and-mongrel-on-mac-os-x",
+ "created_at": "2016-05-21T21:30:42+00:00",
+ "updated_at": "2016-05-21T23:02:02+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463866473,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 39,
+ "user": {
+ "id": 23,
+ "name": "Paul Gandy",
+ "html_name": "Paul Gandy",
+ "url": "https://demo.socialcast.com/users/23-paulgandy",
+ "avatars": {
+ "is_system_default": false,
+ "id": 36,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=iZ8PkN9bpBmF372tx1tSjWROjkE%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=vSlJQJuDAPmQaOLOFk1ymBY2Q4M%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pWpvN4aYWUhCkynIebEwchP%2BkCA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=AQnwgMnTv4bUFDu8B1hrRnHwrqU%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/36/36-iStock_000003905548XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=5OjmE0QGqDvt3Vi57yanY8z%2FxVU%3D"
+ },
+ "username": "PaulGandy",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Inside Sales Manager",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Who can I call to get a new parking pass for the Rowan building?",
+ "body": "Somebody help me, I have been parking 4 blocks away for the last two weeks.",
+ "html_body": "Somebody help me, I have been parking 4 blocks away for the last two weeks.
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/39-who-can-i-call-to-get-a-new-parking-pass-for-the-r",
+ "permalink_url": "https://demo.socialcast.com/messages/39-who-can-i-call-to-get-a-new-parking-pass-for-the-r",
+ "external_url": null,
+ "created_at": "2016-05-21T15:27:42+00:00",
+ "updated_at": "2016-05-21T23:01:36+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463866112,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": {
+ "name": "Outlook",
+ "url": "https://demo.socialcast.com/apps/outlook",
+ "formal_name": "Outlook",
+ "id": "outlook"
+ },
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 2,
+ "comments": [
+ {
+ "id": 37,
+ "url": "https://demo.socialcast.com/api/messages/39/comments/37",
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Call Sheila in HR - she can help you out. (949) 555-5555. She\'s always good at getting this stuff taken care of!",
+ "html_body": "Call Sheila in HR - she can help you out. (949) 555-5555. She\'s always good at getting this stuff taken care of!
",
+ "created_at": "2016-05-21T21:15:41+00:00",
+ "updated_at": "2016-05-21T21:15:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/39-who-can-i-call-to-get-a-new-parking-pass-for-the-r/comments/37",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 40,
+ "url": "https://demo.socialcast.com/api/messages/39/comments/40",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "You can also get a parking pass and the dashboard sticker from calling parking services (they are on the second floor). Their number is (949) 541-4311. I hope this helps! If you have any questions send me a message.",
+ "html_body": "You can also get a parking pass and the dashboard sticker from calling parking services (they are on the second floor). Their number is (949) 541-4311. I hope this helps! If you have any questions send me a message.
",
+ "created_at": "2016-05-21T21:24:41+00:00",
+ "updated_at": "2016-05-21T21:24:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/39-who-can-i-call-to-get-a-new-parking-pass-for-the-r/comments/40",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 37,
+ "user": {
+ "id": 24,
+ "name": "Linda Allen",
+ "html_name": "Linda Allen",
+ "url": "https://demo.socialcast.com/users/24-lindaallen",
+ "avatars": {
+ "is_system_default": false,
+ "id": 43,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gO94GzDbLWNPDvnN8h15fAvVew4%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=62p032LHg%2FUx6%2BmbQO9opjF6sHI%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LCb8naaj3uNjKASKyCEckhIbSUc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=xFDWHzffPJeO891fcqJZ009lmHw%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/43/43-iStock_000004412952XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=9xSCn0Sw0OtFZLK0FN0e2lsnzRE%3D"
+ },
+ "username": "LindaAllen",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Coordinator",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "What blog software do you recommend?",
+ "body": "We are starting up a few company blogs to communicate externally with our customers. I am researching blog software and found a number of platforms, including:\n\nMovable Type http://www.movabletype.com\n\nWordPress http://www.wordpress.com\n\nBlogger http://www.blogger.com\n\nTypePad http://www.typepad.com\n\nWhat blog software do you use for personal use and which one do you like the best? What are the features that I should look for?",
+ "html_body": "\n
We are starting up a few company blogs to communicate externally with our customers. I am researching blog software and found a number of platforms, including:
\n\n
Movable Type http://www.movabletype.com
\n\n
WordPress http://www.wordpress.com
\n\n
Blogger http://www.blogger.com
\n\n
TypePad http://www.typepad.com
\n\n
What blog software do you use for personal use and which one do you like the best? What are the features that I should look for?
\n
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/37-what-blog-software-do-you-recommend",
+ "permalink_url": "https://demo.socialcast.com/messages/37-what-blog-software-do-you-recommend",
+ "external_url": null,
+ "created_at": "2016-05-21T15:21:42+00:00",
+ "updated_at": "2016-05-21T23:01:35+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463865932,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 1,
+ "comments": [
+ {
+ "id": 39,
+ "url": "https://demo.socialcast.com/api/messages/37/comments/39",
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "I\'m currently using http://www.blogger.com and http://www.tumblr.com. I prefer Tumblr because it\'s clean and streamlined.",
+ "html_body": "I\'m currently using http://www.blogger.com and http://www.tumblr.com . I prefer Tumblr because it\'s clean and streamlined.
",
+ "created_at": "2016-05-21T21:21:41+00:00",
+ "updated_at": "2016-05-21T21:21:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/37-what-blog-software-do-you-recommend/comments/39",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 42,
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Does anyone know of any good recruiting services for programmers?",
+ "body": "We are looking to fill a couple positions that have opened up in the last few months, and I have only tried monster.com and dice.com. Can anyone suggest other sites that have proven to be useful?",
+ "html_body": "We are looking to fill a couple positions that have opened up in the last few months, and I have only tried monster.com and dice.com. Can anyone suggest other sites that have proven to be useful?
",
+ "action": "asked a question",
+ "verb": null,
+ "message_type": "question",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/42-does-anyone-know-of-any-good-recruiting-services-f",
+ "permalink_url": "https://demo.socialcast.com/messages/42-does-anyone-know-of-any-good-recruiting-services-f",
+ "external_url": null,
+ "created_at": "2016-05-21T15:36:42+00:00",
+ "updated_at": "2016-05-21T23:01:37+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463865752,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 1,
+ "comments": [
+ {
+ "id": 38,
+ "url": "https://demo.socialcast.com/api/messages/42/comments/38",
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "Linkedin.com is another good one.",
+ "html_body": "Linkedin.com is another good one.
",
+ "created_at": "2016-05-21T21:18:41+00:00",
+ "updated_at": "2016-05-21T21:18:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/42-does-anyone-know-of-any-good-recruiting-services-f/comments/38",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 324,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Daft Hands - Harder, Better, Faster, Stronger",
+ "body": "",
+ "html_body": "
",
+ "action": "favorited a video on YouTube",
+ "verb": "favorited",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/324-daft-hands---harder-better-faster-stronger",
+ "permalink_url": "https://demo.socialcast.com/messages/324-daft-hands---harder-better-faster-stronger",
+ "external_url": "http://www.youtube.com/watch?v=K2cYWfq--Nw",
+ "created_at": "2016-05-21T21:12:42+00:00",
+ "updated_at": "2016-05-21T23:02:01+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": false,
+ "external_resources": [
+ {
+ "id": 21,
+ "url": "http://www.youtube.com/watch?v=K2cYWfq--Nw",
+ "title": "Daft Hands - Harder, Better, Faster, Stronger",
+ "description": "WANT A SHIRT? - http://www.cafepress.com/frecklestudios --- Wait until after the awesome hand-jig and be amazed. Now comes with blurriness AND the moment nea...",
+ "canonical_hashtag": null,
+ "type": "video",
+ "source": {
+ "name": "YouTube",
+ "url": "http://www.youtube.com/"
+ },
+ "tags": [],
+ "oembed": {
+ "version": "1.0",
+ "provider_name": "YouTube",
+ "provider_url": "http://www.youtube.com/",
+ "url": "http://www.youtube.com/watch?v=K2cYWfq--Nw",
+ "title": "Daft Hands - Harder, Better, Faster, Stronger",
+ "description": "WANT A SHIRT? - http://www.cafepress.com/frecklestudios --- Wait until after the awesome hand-jig and be amazed. Now comes with blurriness AND the moment nea...",
+ "type": "video",
+ "thumbnail_url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/20/20-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tk1OhOCvIApcOezjc141zDdhHRA%3D",
+ "html": "VIDEO ",
+ "width": 459,
+ "height": 344,
+ "author_name": "Fr. Eckle Studios",
+ "author_url": "http://www.youtube.com/user/FrEckleStudios",
+ "thumbnail_width": 75,
+ "thumbnail_height": 75
+ },
+ "media_files": [
+ {
+ "canonical": true,
+ "title": "Daft Hands - Harder, Better, Faster, Stronger",
+ "description": "WANT A SHIRT? - http://www.cafepress.com/frecklestudios --- Wait until after the awesome hand-jig and be amazed. Now comes with blurriness AND the moment nea...",
+ "thumbnails": {
+ "stream": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/20/20-hqdefault_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=KHA%2BfeNkVyFsn1%2F%2FHO0NrwfohmI%3D",
+ "stream_square": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/20/20-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tk1OhOCvIApcOezjc141zDdhHRA%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/20/20-hqdefault_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=r8cU0t9J4RT9PE7JQRr8OJqFHs0%3D",
+ "scaled480": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/20/20-hqdefault_scaled480.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=023wr7UcjGaMpOwBBm%2BpliHIfdM%3D"
+ },
+ "thumbnail_metadata": {
+ "stream": {
+ "width": 100,
+ "height": 75
+ },
+ "stream_square": {
+ "width": 75,
+ "height": 75
+ },
+ "square45": {
+ "width": 45,
+ "height": 45
+ },
+ "scaled480": {
+ "width": 480,
+ "height": 360
+ }
+ },
+ "page_url": "http://www.youtube.com/watch?v=K2cYWfq--Nw",
+ "url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/20/20-hqdefault.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=S5jKy8zfFmEg22AePLh7%2FiTe3TQ%3D",
+ "content_type": "image/jpeg",
+ "attachment_id": null
+ }
+ ]
+ }
+ ],
+ "tags": [],
+ "last_interacted_at": 1463865393,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": "https://s3.amazonaws.com/socialcast_demo/link_thumbnails/324/default.jpg",
+ "player_url": "http://www.youtube.com/v/K2cYWfq--Nw&autoplay=1",
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 322,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "East West - Music Video",
+ "body": "",
+ "html_body": "
",
+ "action": "favorited a video on YouTube",
+ "verb": "favorited",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/322-east-west---music-video",
+ "permalink_url": "https://demo.socialcast.com/messages/322-east-west---music-video",
+ "external_url": "http://www.youtube.com/watch?v=vQf72McucGg",
+ "created_at": "2016-05-21T21:09:42+00:00",
+ "updated_at": "2016-05-21T23:02:00+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": false,
+ "external_resources": [
+ {
+ "id": 20,
+ "url": "http://www.youtube.com/watch?v=vQf72McucGg",
+ "title": "East West - Music Video",
+ "description": "This is the music video for Christian metal band East West. The song is entitled Vacant and it\'s from their album Hope in Anguish released in 2004. Do you li...",
+ "canonical_hashtag": null,
+ "type": "video",
+ "source": {
+ "name": "YouTube",
+ "url": "http://www.youtube.com/"
+ },
+ "tags": [],
+ "oembed": {
+ "version": "1.0",
+ "provider_name": "YouTube",
+ "provider_url": "http://www.youtube.com/",
+ "url": "http://www.youtube.com/watch?v=vQf72McucGg",
+ "title": "East West - Music Video",
+ "description": "This is the music video for Christian metal band East West. The song is entitled Vacant and it\'s from their album Hope in Anguish released in 2004. Do you li...",
+ "type": "video",
+ "thumbnail_url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/19/19-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g0fU0gG24OPpkyHpdd2fClphsNQ%3D",
+ "html": "VIDEO ",
+ "width": 459,
+ "height": 344,
+ "thumbnail_height": 75,
+ "author_name": "astrotriforce",
+ "thumbnail_width": 75,
+ "author_url": "http://www.youtube.com/user/astrotriforce"
+ },
+ "media_files": [
+ {
+ "canonical": true,
+ "title": "East West - Music Video",
+ "description": "This is the music video for Christian metal band East West. The song is entitled Vacant and it\'s from their album Hope in Anguish released in 2004. Do you li...",
+ "thumbnails": {
+ "stream": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/19/19-hqdefault_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=f0r1fMSY%2B7mc1xBeadAymuNy89A%3D",
+ "stream_square": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/19/19-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g0fU0gG24OPpkyHpdd2fClphsNQ%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/19/19-hqdefault_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ALUiAaQZ0U8LPQxf%2F%2BLaQG6tP6w%3D",
+ "scaled480": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/19/19-hqdefault_scaled480.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=e5IigGp4ZgwwE4zbyA29mPrMi%2FE%3D"
+ },
+ "thumbnail_metadata": {
+ "stream": {
+ "width": 100,
+ "height": 75
+ },
+ "stream_square": {
+ "width": 75,
+ "height": 75
+ },
+ "square45": {
+ "width": 45,
+ "height": 45
+ },
+ "scaled480": {
+ "width": 480,
+ "height": 358
+ }
+ },
+ "page_url": "http://www.youtube.com/watch?v=vQf72McucGg",
+ "url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/19/19-hqdefault.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=GGLjDJ7nU%2Bv4qap6vPF%2FTikfeYc%3D",
+ "content_type": "image/jpeg",
+ "attachment_id": null
+ }
+ ]
+ }
+ ],
+ "tags": [],
+ "last_interacted_at": 1463865213,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": "https://s3.amazonaws.com/socialcast_demo/link_thumbnails/322/default.jpg",
+ "player_url": "http://www.youtube.com/v/vQf72McucGg&autoplay=1",
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 321,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Boston Dynamics Big Dog (new video March 2010)",
+ "body": "",
+ "html_body": "
",
+ "action": "favorited a video on YouTube",
+ "verb": "favorited",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/321-boston-dynamics-big-dog-new-video-march-2010",
+ "permalink_url": "https://demo.socialcast.com/messages/321-boston-dynamics-big-dog-new-video-march-2010",
+ "external_url": "http://www.youtube.com/watch?v=W1czBcnX1Ww",
+ "created_at": "2016-05-21T21:06:42+00:00",
+ "updated_at": "2016-05-21T23:02:00+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": false,
+ "external_resources": [
+ {
+ "id": 19,
+ "url": "http://www.youtube.com/watch?v=W1czBcnX1Ww",
+ "title": "Boston Dynamics Big Dog (new video March 2008)",
+ "description": "Boston Dynamics just released a new video of the Big Dog on ice and snow, and also demoing its walking gait.",
+ "canonical_hashtag": null,
+ "type": "video",
+ "source": {
+ "name": "YouTube",
+ "url": "http://www.youtube.com/"
+ },
+ "tags": [],
+ "oembed": {
+ "version": "1.0",
+ "provider_name": "YouTube",
+ "provider_url": "http://www.youtube.com/",
+ "url": "http://www.youtube.com/watch?v=W1czBcnX1Ww",
+ "title": "Boston Dynamics Big Dog (new video March 2008)",
+ "description": "Boston Dynamics just released a new video of the Big Dog on ice and snow, and also demoing its walking gait.",
+ "type": "video",
+ "thumbnail_url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/18/18-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=a7IsnboXpBR5IMLUp39zX%2Bxmx4s%3D",
+ "html": "VIDEO ",
+ "width": 600,
+ "height": 338,
+ "author_url": "http://www.youtube.com/user/olinerd",
+ "author_name": "olinerd",
+ "thumbnail_height": 75,
+ "thumbnail_width": 75
+ },
+ "media_files": [
+ {
+ "canonical": true,
+ "title": "Boston Dynamics Big Dog (new video March 2008)",
+ "description": "Boston Dynamics just released a new video of the Big Dog on ice and snow, and also demoing its walking gait.",
+ "thumbnails": {
+ "stream": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/18/18-hqdefault_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=mVRIIbMkg0LQU1sDf7wHCD8Zf%2Fk%3D",
+ "stream_square": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/18/18-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=a7IsnboXpBR5IMLUp39zX%2Bxmx4s%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/18/18-hqdefault_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=OoqnBuyCrzm3Jw2wyJBsPsur0%2Bc%3D",
+ "scaled480": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/18/18-hqdefault_scaled480.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=bqzrtmrnv0Lz410TTtDQhZxperQ%3D"
+ },
+ "thumbnail_metadata": {
+ "stream": {
+ "width": 100,
+ "height": 75
+ },
+ "stream_square": {
+ "width": 75,
+ "height": 75
+ },
+ "square45": {
+ "width": 45,
+ "height": 45
+ },
+ "scaled480": {
+ "width": 480,
+ "height": 360
+ }
+ },
+ "page_url": "http://www.youtube.com/watch?v=W1czBcnX1Ww",
+ "url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/18/18-hqdefault.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZqtXhSn5UCp2MmYBFYVyO8M2DXE%3D",
+ "content_type": "image/jpeg",
+ "attachment_id": null
+ }
+ ]
+ }
+ ],
+ "tags": [],
+ "last_interacted_at": 1463865033,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": "https://s3.amazonaws.com/socialcast_demo/link_thumbnails/321/default.jpg",
+ "player_url": "http://www.youtube.com/v/W1czBcnX1Ww&autoplay=1",
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 320,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "World of Warcraft: The Molten Core",
+ "body": "",
+ "html_body": "
",
+ "action": "favorited a video on YouTube",
+ "verb": "favorited",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/320-world-of-warcraft-the-molten-core",
+ "permalink_url": "https://demo.socialcast.com/messages/320-world-of-warcraft-the-molten-core",
+ "external_url": "http://www.youtube.com/watch?v=Ce7ivrGMN0U",
+ "created_at": "2016-05-21T21:03:42+00:00",
+ "updated_at": "2016-05-21T23:02:00+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": false,
+ "external_resources": [
+ {
+ "id": 18,
+ "url": "http://www.youtube.com/watch?v=Ce7ivrGMN0U",
+ "title": "World of Warcraft: The Molten Core",
+ "description": "WORLD OF WARCRAFT COMING TO CONSOLES WITH MOLTEN CORE™ Blizzard Entertainment, Inc. announces its long-awaited return to console gaming with World of Warcraf...",
+ "canonical_hashtag": null,
+ "type": "video",
+ "source": {
+ "name": "YouTube",
+ "url": "http://www.youtube.com/"
+ },
+ "tags": [],
+ "oembed": {
+ "version": "1.0",
+ "provider_name": "YouTube",
+ "provider_url": "http://www.youtube.com/",
+ "url": "http://www.youtube.com/watch?v=Ce7ivrGMN0U",
+ "title": "World of Warcraft: The Molten Core",
+ "description": "WORLD OF WARCRAFT COMING TO CONSOLES WITH MOLTEN CORE™ Blizzard Entertainment, Inc. announces its long-awaited return to console gaming with World of Warcraf...",
+ "type": "video",
+ "thumbnail_url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/17/17-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=JNSkKs69%2FPkpqn1P3i11h1GiRz0%3D",
+ "html": "VIDEO ",
+ "width": 600,
+ "height": 338,
+ "thumbnail_height": 75,
+ "author_name": "yoobie",
+ "author_url": "http://www.youtube.com/user/yoobie",
+ "thumbnail_width": 75
+ },
+ "media_files": [
+ {
+ "canonical": true,
+ "title": "World of Warcraft: The Molten Core",
+ "description": "WORLD OF WARCRAFT COMING TO CONSOLES WITH MOLTEN CORE™ Blizzard Entertainment, Inc. announces its long-awaited return to console gaming with World of Warcraf...",
+ "thumbnails": {
+ "stream": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/17/17-hqdefault_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=UIN82KwunBGmsr9Th6ejv5vayAw%3D",
+ "stream_square": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/17/17-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=JNSkKs69%2FPkpqn1P3i11h1GiRz0%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/17/17-hqdefault_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Dyn8GSiQl9Oetn5JG5iwqCrhUAI%3D",
+ "scaled480": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/17/17-hqdefault_scaled480.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=fhLFddrqQRYycueRPIDc%2F0H6ku8%3D"
+ },
+ "thumbnail_metadata": {
+ "stream": {
+ "width": 100,
+ "height": 75
+ },
+ "stream_square": {
+ "width": 75,
+ "height": 75
+ },
+ "square45": {
+ "width": 45,
+ "height": 45
+ },
+ "scaled480": {
+ "width": 480,
+ "height": 358
+ }
+ },
+ "page_url": "http://www.youtube.com/watch?v=Ce7ivrGMN0U",
+ "url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/17/17-hqdefault.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lSTfCtDKx0XmOpC9S6fCY4LgD1I%3D",
+ "content_type": "image/jpeg",
+ "attachment_id": null
+ }
+ ]
+ }
+ ],
+ "tags": [],
+ "last_interacted_at": 1463864853,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": "https://s3.amazonaws.com/socialcast_demo/link_thumbnails/320/default.jpg",
+ "player_url": "http://www.youtube.com/v/Ce7ivrGMN0U&autoplay=1",
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 318,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "BMW (South Africa). Defining innovation.",
+ "body": "",
+ "html_body": "
",
+ "action": "favorited a video on YouTube",
+ "verb": "favorited",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/318-bmw-south-africa-defining-innovation",
+ "permalink_url": "https://demo.socialcast.com/messages/318-bmw-south-africa-defining-innovation",
+ "external_url": "http://www.youtube.com/watch?v=a7Ny5BYc-Fs",
+ "created_at": "2016-05-21T21:00:42+00:00",
+ "updated_at": "2016-05-21T23:01:59+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": false,
+ "external_resources": [
+ {
+ "id": 17,
+ "url": "http://www.youtube.com/watch?v=a7Ny5BYc-Fs",
+ "title": "BMW (South Africa). Defining innovation.",
+ "description": "Source: www.bmw.co.za/innovations. Shot in the Netherlands utilising the moving sculptures of world-renowned artist Theo Jansen, this commercial, entitled \"K...",
+ "canonical_hashtag": null,
+ "type": "video",
+ "source": {
+ "name": "YouTube",
+ "url": "http://www.youtube.com/"
+ },
+ "tags": [],
+ "oembed": {
+ "version": "1.0",
+ "provider_name": "YouTube",
+ "provider_url": "http://www.youtube.com/",
+ "url": "http://www.youtube.com/watch?v=a7Ny5BYc-Fs",
+ "title": "BMW (South Africa). Defining innovation.",
+ "description": "Source: www.bmw.co.za/innovations. Shot in the Netherlands utilising the moving sculptures of world-renowned artist Theo Jansen, this commercial, entitled \"K...",
+ "type": "video",
+ "thumbnail_url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/16/16-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=CBQ%2BXMCabB1hPOC%2FkJZ%2FPoBULs0%3D",
+ "html": "VIDEO ",
+ "width": 459,
+ "height": 344,
+ "thumbnail_height": 75,
+ "author_url": "http://www.youtube.com/user/BMWSouthAfrica",
+ "author_name": "BMWSouthAfrica",
+ "thumbnail_width": 75
+ },
+ "media_files": [
+ {
+ "canonical": true,
+ "title": "BMW (South Africa). Defining innovation.",
+ "description": "Source: www.bmw.co.za/innovations. Shot in the Netherlands utilising the moving sculptures of world-renowned artist Theo Jansen, this commercial, entitled \"K...",
+ "thumbnails": {
+ "stream": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/16/16-hqdefault_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=edh4uepQu1JSS7VQfdl2nWqE2pc%3D",
+ "stream_square": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/16/16-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=CBQ%2BXMCabB1hPOC%2FkJZ%2FPoBULs0%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/16/16-hqdefault_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=RXdhKEG8Kqf7mdTgtvsHi%2Fm%2BfpU%3D",
+ "scaled480": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/16/16-hqdefault_scaled480.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pmTsdp0DJUkJqAJQmvKQG%2FCmS8M%3D"
+ },
+ "thumbnail_metadata": {
+ "stream": {
+ "width": 100,
+ "height": 75
+ },
+ "stream_square": {
+ "width": 75,
+ "height": 75
+ },
+ "square45": {
+ "width": 45,
+ "height": 45
+ },
+ "scaled480": {
+ "width": 480,
+ "height": 360
+ }
+ },
+ "page_url": "http://www.youtube.com/watch?v=a7Ny5BYc-Fs",
+ "url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/16/16-hqdefault.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=WCr1CcVoIq9PHCte7h54tQwqbPs%3D",
+ "content_type": "image/jpeg",
+ "attachment_id": null
+ }
+ ]
+ }
+ ],
+ "tags": [],
+ "last_interacted_at": 1463864673,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": "https://s3.amazonaws.com/socialcast_development/link_thumbnails/318/default.jpg",
+ "player_url": "http://www.youtube.com/v/a7Ny5BYc-Fs&autoplay=1",
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [
+ {
+ "id": 16,
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames"
+ },
+ "created_at": "2016-05-21T20:48:41+00:00",
+ "unlikable": true
+ }
+ ],
+ "likes_count": 1,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 317,
+ "user": {
+ "id": 27,
+ "name": "Mike Whittington",
+ "html_name": "Mike Whittington",
+ "url": "https://demo.socialcast.com/users/27-mikewhittington",
+ "avatars": {
+ "is_system_default": false,
+ "id": 64,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=ZQ1%2F9N9l1Rse4D2QBTyrjlNQrt0%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=FWlIzi6881sgJR5fR02dn1B8AhM%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=8J9i8biJzjMg4vgB17B4HHG50PA%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=tTh4hmOYibiTeYsM1QKCbzCBWJ0%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/64/64-iStock_000004262678XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=dzlzADBQ6NQTnu0%2B5riSP0A2jyM%3D"
+ },
+ "username": "MikeWhittington",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Web Admin",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Developing and deploying an application on Google App Engine",
+ "body": "",
+ "html_body": "
",
+ "action": "favorited a video on YouTube",
+ "verb": "favorited",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/317-developing-and-deploying-an-application-on-google",
+ "permalink_url": "https://demo.socialcast.com/messages/317-developing-and-deploying-an-application-on-google",
+ "external_url": "http://www.youtube.com/watch?v=bfgO-LXGpTM",
+ "created_at": "2016-05-21T20:57:42+00:00",
+ "updated_at": "2016-05-21T23:01:59+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": false,
+ "external_resources": [
+ {
+ "id": 16,
+ "url": "http://www.youtube.com/watch?v=bfgO-LXGpTM",
+ "title": "Developing and deploying an application on Google App Engine",
+ "description": "This video introduces developers to building apps on Google App Engine. For more in-depth information and deep-dive technical sessions, come to Google I/O, G...",
+ "canonical_hashtag": null,
+ "type": "video",
+ "source": {
+ "name": "YouTube",
+ "url": "http://www.youtube.com/"
+ },
+ "tags": [],
+ "oembed": {
+ "version": "1.0",
+ "provider_name": "YouTube",
+ "provider_url": "http://www.youtube.com/",
+ "url": "http://www.youtube.com/watch?v=bfgO-LXGpTM",
+ "title": "Developing and deploying an application on Google App Engine",
+ "description": "This video introduces developers to building apps on Google App Engine. For more in-depth information and deep-dive technical sessions, come to Google I/O, G...",
+ "type": "video",
+ "thumbnail_url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/15/15-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=XC7NwmH%2FTa8v0rYcsOMGBG6gqh4%3D",
+ "html": "VIDEO ",
+ "width": 459,
+ "height": 344,
+ "author_name": "Google Developers",
+ "thumbnail_height": 75,
+ "thumbnail_width": 75,
+ "author_url": "http://www.youtube.com/user/GoogleDevelopers"
+ },
+ "media_files": [
+ {
+ "canonical": true,
+ "title": "Developing and deploying an application on Google App Engine",
+ "description": "This video introduces developers to building apps on Google App Engine. For more in-depth information and deep-dive technical sessions, come to Google I/O, G...",
+ "thumbnails": {
+ "stream": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/15/15-hqdefault_stream.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=mqCErXVwMqmyjqSiBzJcbWDMoko%3D",
+ "stream_square": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/15/15-hqdefault_stream_square.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=XC7NwmH%2FTa8v0rYcsOMGBG6gqh4%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/15/15-hqdefault_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=NEHgVPSmVT5iuul8UbszGRK%2FDec%3D",
+ "scaled480": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/15/15-hqdefault_scaled480.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pYiZxGRO5w%2BqdvWTg%2B%2Fttqu4LbQ%3D"
+ },
+ "thumbnail_metadata": {
+ "stream": {
+ "width": 100,
+ "height": 75
+ },
+ "stream_square": {
+ "width": 75,
+ "height": 75
+ },
+ "square45": {
+ "width": 45,
+ "height": 45
+ },
+ "scaled480": {
+ "width": 480,
+ "height": 360
+ }
+ },
+ "page_url": "http://www.youtube.com/watch?v=bfgO-LXGpTM",
+ "url": "https://socialcast-demo.s3.amazonaws.com/tenants/5/media_files/15/15-hqdefault.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=mRMO5iGQZtjR0Ezk3d9nYtTi8%2Fg%3D",
+ "content_type": "image/jpeg",
+ "attachment_id": null
+ }
+ ]
+ }
+ ],
+ "tags": [],
+ "last_interacted_at": 1463864493,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": "https://s3.amazonaws.com/socialcast_demo/link_thumbnails/317/default.jpg",
+ "player_url": "http://www.youtube.com/v/bfgO-LXGpTM&autoplay=1",
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 316,
+ "user": {
+ "id": 20,
+ "name": "Lee Mosely",
+ "html_name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely",
+ "avatars": {
+ "is_system_default": false,
+ "id": 15,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lar4A1A%2BIGVT0Jm9BWc%2FZkLQI2E%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=alc2EjX977%2FPhZVZoUQFx6sX1aw%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=qvAEoBNLOmBVNE0APo3Aa9rBih4%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VmuoCQ11CNJSODGSSKRiGIlpaQo%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VrWQo8Mp7%2B%2FSUUwXhY59qBLYezk%3D"
+ },
+ "username": "LeeMosely",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Manufacturing Tech II",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "The rest of the world is here",
+ "body": "",
+ "html_body": "
",
+ "action": "shared an article on Google Reader",
+ "verb": "shared",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/316-the-rest-of-the-world-is-here",
+ "permalink_url": "https://demo.socialcast.com/messages/316-the-rest-of-the-world-is-here",
+ "external_url": "http://feeds.feedburner.com/~r/RaphsWebsite/~3/273051108/",
+ "created_at": "2016-05-21T20:54:42+00:00",
+ "updated_at": "2016-05-21T23:01:58+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463864313,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 315,
+ "user": {
+ "id": 20,
+ "name": "Lee Mosely",
+ "html_name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely",
+ "avatars": {
+ "is_system_default": false,
+ "id": 15,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lar4A1A%2BIGVT0Jm9BWc%2FZkLQI2E%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=alc2EjX977%2FPhZVZoUQFx6sX1aw%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=qvAEoBNLOmBVNE0APo3Aa9rBih4%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VmuoCQ11CNJSODGSSKRiGIlpaQo%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VrWQo8Mp7%2B%2FSUUwXhY59qBLYezk%3D"
+ },
+ "username": "LeeMosely",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Manufacturing Tech II",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Social network(ing) sitesâ¦revisiting the story so far: A response to danah boyd & Nicole Ellison",
+ "body": "",
+ "html_body": "
",
+ "action": "shared an article on Google Reader",
+ "verb": "shared",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/315-social-networking-sitesrevisiting-the-story-so-far",
+ "permalink_url": "https://demo.socialcast.com/messages/315-social-networking-sitesrevisiting-the-story-so-far",
+ "external_url": "http://www.blackwell-synergy.com/doi/full/10.1111/j.1083-6101.2008.00408.x?cookieSet=1",
+ "created_at": "2016-05-21T20:51:42+00:00",
+ "updated_at": "2016-05-21T23:01:58+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463864133,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 63,
+ "user": {
+ "id": 26,
+ "name": "Jennifer Lawson",
+ "html_name": "Jennifer Lawson",
+ "url": "https://demo.socialcast.com/users/26-jenniferlawson",
+ "avatars": {
+ "is_system_default": false,
+ "id": 57,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=olpaMCJfMOL0DzZcL4eYF%2BEOj04%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=g9hgTOwxuMLO8JhewqAa1C4x%2FGo%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=wLU1GDDnJ4O%2FEqWDPrGhPbKJvqo%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Mc7bq5BhZTFnYHfO84a0WFElpBQ%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/57/iStock_000004227730XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=DAp0iviuojRfPYId%2Bn6FTcQacMs%3D"
+ },
+ "username": "JenniferLawson",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "tenant_admin",
+ "type": "User",
+ "title": "Vice President of Product",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Software spend for 2010 should include Photoshop Elements 6",
+ "body": "Considering that a lot of our sales are done through our website, using Elements will help when editing various pictures, images, pdfs, etc. You can try using a trial version of this tool at www.adobe.com. Please let me know what you think.",
+ "html_body": "Considering that a lot of our sales are done through our website, using Elements will help when editing various pictures, images, pdfs, etc. You can try using a trial version of this tool at www.adobe.com . Please let me know what you think.
",
+ "action": "posted an idea",
+ "verb": null,
+ "message_type": "idea",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/63-software-spend-for-2010-should-include-photoshop-e",
+ "permalink_url": "https://demo.socialcast.com/messages/63-software-spend-for-2010-should-include-photoshop-e",
+ "external_url": null,
+ "created_at": "2016-05-21T16:36:42+00:00",
+ "updated_at": "2016-05-21T23:01:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463864132,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": false,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [
+ {
+ "extension_type": "idea_message",
+ "idea": {
+ "id": 14,
+ "up_votes": 0,
+ "vote_count": 0,
+ "state": "active",
+ "can_vote": true,
+ "can_delete": true,
+ "can_change_state": true,
+ "text": "Considering that a lot of our sales are done through our website, using Elements will help when editing various pictures, images, pdfs, etc. You can try using a trial version of this tool at www.adobe.com. Please let me know what you think.",
+ "url": "https://demo.socialcast.com/messages/63-software-spend-for-2010-should-include-photoshop-e",
+ "duplicate_ideas": [],
+ "duplicated_idea": null
+ }
+ }
+ ],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 1,
+ "comments": [
+ {
+ "id": 27,
+ "url": "https://demo.socialcast.com/api/messages/63/comments/27",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "I downloaded the tool, but am wondering if Fireworks would be a better fit for our team? Seems to be a little simpler to use.",
+ "html_body": "I downloaded the tool, but am wondering if Fireworks would be a better fit for our team? Seems to be a little simpler to use.
",
+ "created_at": "2016-05-21T20:51:41+00:00",
+ "updated_at": "2016-05-21T20:51:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/63-software-spend-for-2010-should-include-photoshop-e/comments/27",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 314,
+ "user": {
+ "id": 20,
+ "name": "Lee Mosely",
+ "html_name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely",
+ "avatars": {
+ "is_system_default": false,
+ "id": 15,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lar4A1A%2BIGVT0Jm9BWc%2FZkLQI2E%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=alc2EjX977%2FPhZVZoUQFx6sX1aw%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=qvAEoBNLOmBVNE0APo3Aa9rBih4%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VmuoCQ11CNJSODGSSKRiGIlpaQo%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VrWQo8Mp7%2B%2FSUUwXhY59qBLYezk%3D"
+ },
+ "username": "LeeMosely",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Manufacturing Tech II",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Twitter outages and Forrester predictions",
+ "body": "",
+ "html_body": "
",
+ "action": "shared an article on Google Reader",
+ "verb": "shared",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/314-twitter-outages-and-forrester-predictions",
+ "permalink_url": "https://demo.socialcast.com/messages/314-twitter-outages-and-forrester-predictions",
+ "external_url": "http://feeds.feedburner.com/~r/zdnet/Howlett/~3/274841284/",
+ "created_at": "2016-05-21T20:48:42+00:00",
+ "updated_at": "2016-05-21T23:01:58+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463863953,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 60,
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Employee Benefits",
+ "body": "Here are some items that this organization can improve on: 1. Tuition reimbursement -- we have none at this point. 2. Health Insurance -- my ppo costs me $85 a month, but my friends at other companies are paying half that. 3. 401k matching -- all the money that is in my 401k is all my contribution but there is not matching.",
+ "html_body": "Here are some items that this organization can improve on: 1. Tuition reimbursement -- we have none at this point. 2. Health Insurance -- my ppo costs me $85 a month, but my friends at other companies are paying half that. 3. 401k matching -- all the money that is in my 401k is all my contribution but there is not matching.
",
+ "action": "posted an idea",
+ "verb": null,
+ "message_type": "idea",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/60-employee-benefits",
+ "permalink_url": "https://demo.socialcast.com/messages/60-employee-benefits",
+ "external_url": null,
+ "created_at": "2016-05-21T16:27:42+00:00",
+ "updated_at": "2016-05-21T23:01:40+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": null,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463863952,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": false,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [
+ {
+ "extension_type": "idea_message",
+ "idea": {
+ "id": 11,
+ "up_votes": 0,
+ "vote_count": 0,
+ "state": "active",
+ "can_vote": true,
+ "can_delete": true,
+ "can_change_state": true,
+ "text": "Here are some items that this organization can improve on: 1. Tuition reimbursement -- we have none at this point. 2. Health Insurance -- my ppo costs me $85 a month, but my friends at other companies are paying half that. 3. 401k matching -- all the money that is in my 401k is all my contribution but there is not matching.",
+ "url": "https://demo.socialcast.com/messages/60-employee-benefits",
+ "duplicate_ideas": [],
+ "duplicated_idea": null
+ }
+ }
+ ],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 2,
+ "comments": [
+ {
+ "id": 17,
+ "url": "https://demo.socialcast.com/api/messages/60/comments/17",
+ "user": {
+ "id": 25,
+ "name": "Emily James",
+ "html_name": "Emily James",
+ "url": "https://demo.socialcast.com/users/25-emilyjames",
+ "avatars": {
+ "is_system_default": false,
+ "id": 50,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=EvOZjxa7DHDtMMRSUndopi3AToI%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=gKIpbgaemWZO1QJUqmRUap7sXrk%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2FAUF3Y2ExI23ole7gz%2Fpt8CFsOc%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=Xv%2B%2FdJ2qcnnXQ9t0ohyexal5l8s%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/50/50-iStock_000002766836XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=l%2F8bEHo6WHlRSSZZ4Aw7%2BTt5kcI%3D"
+ },
+ "username": "EmilyJames",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Marketing Assistant",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "I agree with you Bob. If our organization wants to help retain top level talent, they should encourage continuing education and have a reimbursement plan as well. I also echo your thoughts on the 401k plan.",
+ "html_body": "I agree with you Bob. If our organization wants to help retain top level talent, they should encourage continuing education and have a reimbursement plan as well. I also echo your thoughts on the 401k plan.
",
+ "created_at": "2016-05-21T20:36:41+00:00",
+ "updated_at": "2016-05-21T20:36:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/60-employee-benefits/comments/17",
+ "editable": true,
+ "deletable": true,
+ "likable": false,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ },
+ {
+ "id": 26,
+ "url": "https://demo.socialcast.com/api/messages/60/comments/26",
+ "user": {
+ "id": 21,
+ "name": "Bob Davis",
+ "html_name": "Bob Davis",
+ "url": "https://demo.socialcast.com/users/21-bobdavis",
+ "avatars": {
+ "is_system_default": false,
+ "id": 22,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=2rkxjER45QGAi7sUU%2BLFhDBOufg%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=LFmUM%2FKUlMYhC43C%2BKA2fZz0TOY%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=%2BykxHU3Lo6WweMsw6YQTlSZQSJw%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=kU94xOUwzRnwOXZskbubZ6ApMGI%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/22/22-iStock_000004087015XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=pxQc3PGTux1dRMQMilpQKlth%2B9I%3D"
+ },
+ "username": "BobDavis",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Senior Software Engineer",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "text": "After speaking with a number of our younger employees I think tutition reimbursement is really key to retaining them. Many of them are looking to earn advanced degrees. If we can setup a plan that accomplishes this effectively we can really grow our staff\'s ability and knowledge.",
+ "html_body": "After speaking with a number of our younger employees I think tutition reimbursement is really key to retaining them. Many of them are looking to earn advanced degrees. If we can setup a plan that accomplishes this effectively we can really grow our staff\'s ability and knowledge.
",
+ "created_at": "2016-05-21T20:48:41+00:00",
+ "updated_at": "2016-05-21T20:48:41+00:00",
+ "attachments": [],
+ "media_files": [],
+ "permalink_url": "https://demo.socialcast.com/messages/60-employee-benefits/comments/26",
+ "editable": false,
+ "deletable": false,
+ "likable": true,
+ "external_resources": [],
+ "likes": [],
+ "likes_count": 0,
+ "thumbnail_url": null
+ }
+ ],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ },
+ {
+ "id": 313,
+ "user": {
+ "id": 20,
+ "name": "Lee Mosely",
+ "html_name": "Lee Mosely",
+ "url": "https://demo.socialcast.com/users/20-leemosely",
+ "avatars": {
+ "is_system_default": false,
+ "id": 15,
+ "square16": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square16.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=lar4A1A%2BIGVT0Jm9BWc%2FZkLQI2E%3D",
+ "square30": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square30.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=alc2EjX977%2FPhZVZoUQFx6sX1aw%3D",
+ "square45": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square45.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=qvAEoBNLOmBVNE0APo3Aa9rBih4%3D",
+ "square70": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square70.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VmuoCQ11CNJSODGSSKRiGIlpaQo%3D",
+ "square140": "https://socialcast-demo.s3.amazonaws.com/tenants/5/profile_photos/15/iStock_000003831616XSmall_square140.jpg?AWSAccessKeyId=AKIAIV34WIEKJKCLRBBQ&Expires=1465128000&Signature=VrWQo8Mp7%2B%2FSUUwXhY59qBLYezk%3D"
+ },
+ "username": "LeeMosely",
+ "active": true,
+ "terminated": false,
+ "inactive": false,
+ "role": "member",
+ "type": "User",
+ "title": "Manufacturing Tech II",
+ "out_of_office": false,
+ "back_in_office_on": null,
+ "company_login": null
+ },
+ "title": "Build It (and they won\'t come)",
+ "body": "",
+ "html_body": "
",
+ "action": "shared an article on Google Reader",
+ "verb": "shared",
+ "message_type": "web_feed",
+ "icon": null,
+ "url": "https://demo.socialcast.com/api/messages/313-build-it-and-they-wont-come",
+ "permalink_url": "https://demo.socialcast.com/messages/313-build-it-and-they-wont-come",
+ "external_url": "http://attspin.blogspot.com/2008/04/build-it-and-they-wont-come.html",
+ "created_at": "2016-05-21T20:45:42+00:00",
+ "updated_at": "2016-05-21T23:01:58+00:00",
+ "attachments": [],
+ "media_files": [],
+ "contains_url_only": true,
+ "external_resources": [],
+ "tags": [],
+ "last_interacted_at": 1463863773,
+ "group": {},
+ "category_id": null,
+ "recipients": [],
+ "thumbnail_url": null,
+ "player_url": null,
+ "player_params": null,
+ "likable": true,
+ "ratable": false,
+ "rating": null,
+ "ratings_average": null,
+ "ratings_count": null,
+ "editable": false,
+ "deletable": false,
+ "watchable": false,
+ "watch": null,
+ "flag": null,
+ "source": null,
+ "poll": null,
+ "embed": null,
+ "hidden": null,
+ "subscribed": null,
+ "groups": [],
+ "extensions": [],
+ "new_group_id": null,
+ "new_group_archived_at": null,
+ "days_of_stickiness": 0,
+ "sticky_for_current_user": false,
+ "shareable": false,
+ "share_count": 0,
+ "client_provided_guid": null,
+ "comments_count": 0,
+ "comments": [],
+ "likes": [],
+ "likes_count": 0,
+ "shared_message": null,
+ "commentable": true
+ }
+ ],
+ "messages_next_page": 3
+}'
diff --git a/script/import_scripts/socialcast/test/test_socialcast_api.rb b/script/import_scripts/socialcast/test/test_socialcast_api.rb
new file mode 100644
index 000000000..220531dc1
--- /dev/null
+++ b/script/import_scripts/socialcast/test/test_socialcast_api.rb
@@ -0,0 +1,84 @@
+require 'minitest/autorun'
+require 'yaml'
+require_relative '../socialcast_api.rb'
+require_relative './test_data.rb'
+
+class TestSocialcastApi < Minitest::Test
+
+ DEBUG = false
+
+ def initialize args
+ config = YAML::load_file(File.join(__dir__, 'config.ex.yml'))
+ @domain = config['domain']
+ @username = config['username']
+ @password = config['password']
+ @kb_id = config['kb_id']
+ @question_id = config['question_id']
+ super args
+ end
+
+ def setup
+ @socialcast = SocialcastApi.new @domain, @username, @password
+ end
+
+ def test_intialize
+ assert_equal @domain, @socialcast.domain
+ assert_equal @username, @socialcast.username
+ assert_equal @password, @socialcast.password
+ end
+
+ def test_base_url
+ assert_equal 'https://demo.socialcast.com/api', @socialcast.base_url
+ end
+
+ def test_headers
+ headers = @socialcast.headers
+ assert_equal 'Basic ZW1pbHlAc29jaWFsY2FzdC5jb206ZGVtbw==', headers[:Authorization]
+ assert_equal 'application/json', headers[:Accept]
+ end
+
+ def test_list_users
+ users = @socialcast.list_users
+ expected = JSON.parse(USERS)['users'].sort {|u| u['id']}
+ assert_equal 15, users.size
+ assert_equal expected[0], users[0]
+ end
+
+ def test_list_users_next_page
+ users = @socialcast.list_users({page: 2})
+ assert_equal 0, users.size
+ end
+
+ def test_list_messages
+ messages = @socialcast.list_messages
+ expected = JSON.parse(MESSAGES)['messages'].sort {|m| m['id']}
+ assert_equal 20, messages.size
+ check_keys expected[0], messages[0]
+ end
+
+ def test_messages_next_page
+ messages = @socialcast.list_messages({page: 2})
+ expected = JSON.parse(MESSAGES_PG_2)['messages'].sort {|m| m['id']}
+ assert_equal 20, messages.size
+ check_keys expected[0], messages[0]
+ end
+
+ private
+
+ def check_keys expected, actual
+ msg = "### caller[0]:\nKey not found in actual keys: #{actual.keys}\n"
+ expected.keys.each do |k|
+ assert (actual.keys.include? k), "#{k}"
+ end
+ end
+
+ def debug message, show=false
+ if show || DEBUG
+ puts '### ' + caller[0]
+ puts ''
+ puts message
+ puts ''
+ puts ''
+ end
+ end
+end
diff --git a/script/import_scripts/socialcast/title.rb b/script/import_scripts/socialcast/title.rb
new file mode 100644
index 000000000..cebf8f0ed
--- /dev/null
+++ b/script/import_scripts/socialcast/title.rb
@@ -0,0 +1,27 @@
+require_relative './socialcast_message.rb'
+require_relative './socialcast_user.rb'
+require 'set'
+require File.expand_path(File.dirname(__FILE__) + "/../base.rb")
+
+MESSAGES_DIR = "output/messages"
+
+def titles
+ topics = 0
+ total = count_files(MESSAGES_DIR)
+ Dir.foreach(MESSAGES_DIR) do |filename|
+ next if filename == '.' or filename == '..'
+ message_json = File.read MESSAGES_DIR + '/' + filename
+ message = SocialcastMessage.new(message_json)
+ next unless message.title
+ #puts "#{filename}, #{message.replies.size}, #{message.topic[:raw].size}, #{message.message_type}, #{message.title}"
+ puts "[#{message.title}](#{message.url})"
+ topics += 1
+ end
+ puts "", "Imported #{topics} topics. Skipped #{total - topics}."
+end
+
+def count_files(path)
+ Dir.foreach(path).select {|f| f != '.' && f != '..'}.count
+end
+
+titles