ImportTrackingEvents

This method should yield imported tracking events for a connection. It should only be implemented if you support importing tracking data in bulk via file exchange or API requests. Any information needed to retrieve tracking data for a connection should be collected in your registration form and will be made available as metadata in the request. See the Tracking Overview for implementation details.

Request
Request Body schema: application/json

An object containing information about the connection to import tracking events for.

transaction_id
required
string <uuid>

The transaction ID uniquely represents this request. If the request is retried then this transaction ID will be the same. You should only perform the requested action once per given transaction ID.

object (Authorization)
object or null
connection_name
string or null

The name of the connection to use, if this app has connection names defined

Responses
200

A list of imported tracking events

post/ImportTrackingEvents
Request samples
application/json
{
  • "transaction_id": "0fec1e58-b197-4052-99cf-2218496c5482",
  • "authorization": {
    },
  • "metadata": {
    },
  • "connection_name": "string"
}
Response samples
application/json
[
  • {
    }
]