Skip to main content
Version: v2

Get Users

Retrieve a list of users matching the supplied filter criteria

Query Parameters
    uid string optional

    The application-specific ID you've given to a user

    email string optional

    The email address associated with a user

    display_name string optional

    The nice-looking name for a user

    is_identified boolean optional

    Whether or not a user is anonymous or identified

    page_token string optional

    The token indicating the page of users to fetch. The same filter criteria should be supplied. This value should not be specified when requesting the first page of users.

    include_schema boolean optional

    Whether to include schemas in the response.

Responses
200

A successful response.


{
"results": [
{
"id": "987654321",
"uid": "xyz123",
"display_name": "Daniel Falko",
"email": "daniel.falko@example.com",
"is_being_deleted": false,
"properties": {
"pricing_plan": "paid",
"popup_help": true,
"total_spent": 14.55
},
"schema": null,
"type_conflicts": null,
"app_url": "https://app.fullstory.com/ui/orgid/segments/everyone/people:search:abc/user/xyz"
}
],
"total_records": "1200",
"next_page_token": "asd543=",
"app_url": "https://app.fullstory.com/ui/orgid/segments/everyone/people:search:abc/0"
}
Loading...