Skip to main content
Version: v2

Get Batch Imported Users

Get the Fullstory id and user details for successful users imported from a batch 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

    include_schema boolean optional

    Whether to include schemas in the response.

Responses
200

A successful response.


{
"results": [
{
"id": "123456789",
"uid": "xyz123",
"display_name": "Daniel Falko",
"email": "daniel.falko@example.com",
"properties": {
"pricing_plan": "paid",
"popup_help": true,
"total_spent": 14.55
},
"schema": null,
"type_conflicts": null
}
],
"total_records": "1200",
"next_page_token": "asd543="
}
Loading...