Skip to main content
Version: v2

Get Batch Import Errors

Get the error message and code for any users that failed from a user 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": [
{
"message": "The error message",
"code": "error_code",
"user": {
"uid": "xyz123",
"properties": {
"rewards_status": "platinum"
}
}
}
],
"total_records": "1200",
"next_page_token": "asd543="
}
GET /v2/users/batch/{job_id}/errors
Authorization: ApiKeyAuth
name: Authorizationin: headertype: apiKey
https://api.fullstory.com/v2/users/batch/{job_id}/errors
curl -L -X GET 'https://api.fullstory.com/v2/users/batch/:job_id/errors' \
-H 'Accept: application/json' \
-H 'Authorization: Basic <API_KEY_VALUE>'