Skip to main content

Set User Properties

Set user properties

Capture custom user data with the FS.setUserVars function, which takes a single argument: an object or dictionary containing simple key/value pairs you'd like to capture.

Parameters
    userVars Dictionary required

    A Dictionary with key/value pairs that provides additional information about your user.

Special Fields
These are reserved field names that can be included in userVars that have special meaning and usage.
    displayName String optional

    The value of displayName is displayed in the session list and on the user card in the app.

    email String optional

    The value of email is used to let you email the user directly from the app. The email value can also be used to retrieve users and sessions via the Get User and List Sessions HTTP APIs.

Limits

  • Sustained calls are limited to 12 calls per minute, with a burst limit of 5 calls per second.

Additional Information

[FS setUserVars:(NSDictionary*)userVars]

Example Invocation

 NSMutableDictionary *userVars = [NSMutableDictionary dictionary];
userVars = @{
@"email": @"user1@example.com",
@"displayName": @"Shopping User",
@"pricingPlan": @"free",
@"totalSpent": 14.50,
@"requiresHelp": YES,
};
[FS setUserVars: userVars];