GetUserData()
Returns data about all the users in one datasource.
Output:
This method returns a list of users, including all demographic data.
The first record returned contains the names of the fields of the user list. The following fields are always included:
- UserID - The ID of the user, including the datasource ID. (e.g., “Data1_JohnSmith”).
- OriginalID - The ID of the user, without the datasource ID. (e.g., “JohnSmith”).
- FullEmail - The email address of the user. (e.g., “johnsmith@example.org”).
- LastName - The last name of the user. (e.g., “Smith”).
- FirstName - The first name of the user. (e.g., “John”).
The user list begins at the second record.
Mandatory Parameters:
- APIKeyHeader - API Key. Must be one of the API Keys generated in the Blue admin console.
- SourceID - The ID of the datasource. Can be retrieved by calling
GetDataSourceMappingTable()
.
Optional Parameters:
- Message - Leave empty.
Back to top