Skip to content

Get Profile History Record

customerprofiles_get_profile_history_record R Documentation

Returns a history record for a specific profile, for a specific domain

Description

Returns a history record for a specific profile, for a specific domain.

Usage

customerprofiles_get_profile_history_record(DomainName, ProfileId, Id)

Arguments

DomainName

[required] The unique name of the domain for which to return a profile history record.

ProfileId

[required] The unique identifier of the profile for which to return a history record.

Id

[required] The unique identifier of the profile history record to return.

Value

A list with the following syntax:

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",
  Content = "string",
  PerformedBy = "string"
)

Request syntax

svc$get_profile_history_record(
  DomainName = "string",
  ProfileId = "string",
  Id = "string"
)