pitchmuc / aepp

Adobe Experience Platform API for humans

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support UPS Exports

cmenguy opened this issue · comments

It would be very useful to support UPS Exports that are available via API - both for profiles, events and profile+events.

For example to export profile data aggregated with events:

{
  "filter": {
    "segmentQualificationTime": {
      "startTime": "2022-12-04T00:00:00Z",
      "endTime": "2023-01-04T00:00:00Z"
    },
    "emptyProfiles": false
  },
  "additionalFields": {
    "eventList": {
      "filter": {
        "fromIngestTimestamp": "2022-12-04T00:00:00Z",
        "toIngestTimestamp": "2023-01-04T00:00:00Z"
      }
    }
  },
  "destination": {
    "datasetId": "{{upsExportDataset}}",
    "segmentPerBatch": false
  },
  "schema": {
    "name": "_xdm.context.profile"
  },
  "properties": {
      "checkBatchStatusForSuccess": true
  }
}

I can help with that if you are open to it as I've been intimately familiar with this API for the past few months and there's a few caveats for best practices in what should be provided by the user.

commented

I am happy to leave that one for you.