We start to get errors on our

We start to get errors on our atuumnTrack(), and after looking into the code and logging the response from autumn SDK, it seems that data.id is no long populated? This cause our check to fail.

Just curious is it intentional that this
id
field is no longer populated?
  const result = await autumn.track(trackParams);
  console.log('autumnTrack result', result);
  if (result.data && result.data.id) {
    return { success: true };
  }
Was this page helpful?