Skip to main content
Version: v2

Get Batch Import Errors

Get the error message and code for any events that failed from an events import job.

This call is a step in an asynchronous workflow.

Path Parameters
    job_id string required

    ID that can be used to check the status and retrieve results for the batch import

Query Parameters
    page_token string optional

    The token that can be used in a request to fetch the next page of results

Responses
200

A successful response.


{
"results": [
{
"event": {
"session": {
"id": "123456789:123456789"
},
"context": {
"browser": {
"url": "https://app.example.com",
"user_agent": "Example_User_Agent",
"initial_referrer": "https://referrer.example.com"
}
},
"name": "Support Ticket",
"timestamp": "2022-03-15T14:23:23Z",
"properties": {
"id": 424242,
"priority": "Normal",
"source": "Email",
"title": "Account locked out"
}
}
}
],
"total_records": "98",
"next_page_token": "asd543="
}
Loading...