I'm writing software to analyse my website traffic. I've got tomething like that in query:
var query1 = new DataQuery(dataFeedUrl)
{
Ids = string.Format("ga:{0}", profileId),
Metrics = "ga:visits,ga:newVisits,ga:organicSearches",
Sort = "ga:visits",
GAStartDate = startDate.ToString("yyyy-MM-dd"),
GAEndDate = endDate.ToString("yyyy-MM-dd"),
StartIndex = 1
};
I have to get more data about Visits by Traffic Type (not only organicSearches), like:
- Direct
- Referral
- Paid
- Mailing
How can I get them as a metric? Kind regards!