analytics faq.md

Analytics FAQ

Why are my scheduled exports not working?

How do I control read vs. write access within ION Analytics?

How can I join custom attributes to bring their key–value pairs into another dataset or view?

Bring custom attribute key–value pairs into another dataset or view by joining on the attributes base table.

How do I access ION User type custom attributes?

This is made possible through the entities table and two joins.

  1. Take your desired attributes and join attributes -> entities (join on entity_id = entity_id)
  2. Join users onto the new entities with two join keys as follows, entities -> users (join on entity_id = entity_id AND entities.TYPE = "user")
  3. From you can get users.name / users.email as the associated ION User attribute type!