Page MenuHomePhabricator

List and describe Activity types and acoustic data in civi
Closed, ResolvedPublic

Description

Please use separate sheets in this spreadsheet to list and describe the types of Activites and the data types saved from acoustic:
https://docs.google.com/spreadsheets/d/1HpkiueLo6-c9ViPpgjPXa9wpIdCpGH7HpUaLD-oGl-I/edit#gid=0

DoD:

  • list of data types as they would appear in Searchkit
  • A nontechnical description of each data type

Event Timeline

That looks really good! Thanks! Now for the acoustic data :)

This is going to be super helpful for new users of searchkit and for our data retention conversations.

@DStrine I think what you want on the silverpop side is that we pull data back & store it in 4 tables

  • civicm_mailing - this holds the html etc of the mailings.
  • civicrm_mailing_stats - this holds aggregates for the mailings (number bounced etc)
  • civicrm_mailing_provider_data - this is the huge table with every response to a mailing
  • membership in remind me later group (and contacts added to CiviCRM)
  • the top 3 tables are not exposed in search-kit but there are no huge obstacles to adding them. Group membership is a little bit trickier (we've discussed that being missing before ) & a bigger task to address

Also

https://www.mediawiki.org/wiki/Fundraising_tech/CiviCRM#Data_transfer_between_CiviCRM_and_Acoustic_(aka_Watson_Campaign_Automation_Silverpop,_IBM_)

This comment was removed by DStrine.
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`mailing_id` int(10) unsigned NOT NULL,
`mailing_name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`recipients` int(10) unsigned DEFAULT NULL,
`delivered` int(10) unsigned DEFAULT NULL,
`bounced` int(10) unsigned DEFAULT NULL,
`blocked` int(10) unsigned DEFAULT NULL,
`suppressed` int(10) unsigned DEFAULT NULL,
`abuse_complaints` int(10) unsigned DEFAULT NULL,
`opened_total` int(10) unsigned DEFAULT NULL,
`opened_unique` int(10) unsigned DEFAULT NULL,
`unsubscribed` int(10) unsigned DEFAULT NULL,
`forwarded` int(10) unsigned DEFAULT NULL,
`clicked_total` int(10) unsigned DEFAULT NULL,
`clicked_unique` int(10) unsigned DEFAULT NULL,
`trackable_urls` int(10) unsigned DEFAULT NULL,