Adding backdated data with timestamp parameter | Community
Skip to main content
Level 3
September 17, 2017
Solved

Adding backdated data with timestamp parameter

  • September 17, 2017
  • 2 replies
  • 2682 views

Does anyone know if there is a certain window of time that a backdated GET tracking request (with the t parameter updated accordingly) has to be made within in order for it to be processed correctly?

I have tried this method to re-inject a few rows from around 1 month prior - yet the data only gets processed for the day that the hit is received.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Alexis_Cazes_

Per your description, it won't work.

The timestamp parameter is ts. So for it to work you need:

  • To put a correct timestamp value in ts parameter
  • Make sure your report suite is at least timestamp optional (means that both manually timestamped hits and non timestamped hits can be processed) or timestamp enabled (only manually timestamped hits will be processed).

I would advise you to look at data insertion API

Also make sure that visitor id is the same.

And no there should not be a window as far as I know.

2 replies

Alexis_Cazes_
Alexis_Cazes_Accepted solution
Level 10
September 18, 2017

Per your description, it won't work.

The timestamp parameter is ts. So for it to work you need:

  • To put a correct timestamp value in ts parameter
  • Make sure your report suite is at least timestamp optional (means that both manually timestamped hits and non timestamped hits can be processed) or timestamp enabled (only manually timestamped hits will be processed).

I would advise you to look at data insertion API

Also make sure that visitor id is the same.

And no there should not be a window as far as I know.

Level 3
October 6, 2017

The data insertion API ended up being the best way forward for me with this - thanks for steering me down that path.