List Profile History Records
| customerprofiles_list_profile_history_records | R Documentation |
Returns a list of history records for a specific profile, for a specific domain¶
Description¶
Returns a list of history records for a specific profile, for a specific domain.
Usage¶
customerprofiles_list_profile_history_records(DomainName, ProfileId,
ObjectTypeName, NextToken, MaxResults, ActionType, PerformedBy)
Arguments¶
DomainName |
[required] The unique name of the domain for which to return profile history records. |
ProfileId |
[required] The identifier of the profile to be taken. |
ObjectTypeName |
Applies a filter to include profile history records only with the
specified |
NextToken |
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. |
MaxResults |
The maximum number of results to return per page. |
ActionType |
Applies a filter to include profile history records only with the
specified |
PerformedBy |
Applies a filter to include profile history records only with the
specified |
Value¶
A list with the following syntax:
list(
ProfileHistoryRecords = list(
list(
Id = "string",
ObjectTypeName = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
ActionType = "ADDED_PROFILE_KEY"|"DELETED_PROFILE_KEY"|"CREATED"|"UPDATED"|"INGESTED"|"DELETED_BY_CUSTOMER"|"EXPIRED"|"MERGED"|"DELETED_BY_MERGE",
ProfileObjectUniqueKey = "string",
PerformedBy = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_profile_history_records(
DomainName = "string",
ProfileId = "string",
ObjectTypeName = "string",
NextToken = "string",
MaxResults = 123,
ActionType = "ADDED_PROFILE_KEY"|"DELETED_PROFILE_KEY"|"CREATED"|"UPDATED"|"INGESTED"|"DELETED_BY_CUSTOMER"|"EXPIRED"|"MERGED"|"DELETED_BY_MERGE",
PerformedBy = "string"
)