Skip to main content
Version: v2

Get Batch Import Job Details

Get the status for a batch events import job with job details.

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

Responses
200

A successful response.


{
"imports": 42,
"errors": 2,
"job": {
"id": "abd123=",
"status": "FAILED",
"created": "2019-04-18T14:36:11.123Z",
"finished": "2019-04-18T15:36:11.123Z"
}
}
GET /v2/events/batch/{job_id}
Authorization: ApiKeyAuth
name: Authorizationin: headertype: apiKey
https://api.fullstory.com/v2/events/batch/{job_id}
curl -L -X GET 'https://api.fullstory.com/v2/events/batch/:job_id' \
-H 'Accept: application/json' \
-H 'Authorization: Basic <API_KEY_VALUE>'