Skip to content

Batch Get Calculated Attribute For Profile

customerprofiles_batch_get_calculated_attribute_for_profile R Documentation

Fetch the possible attribute values given the attribute name

Description

Fetch the possible attribute values given the attribute name.

Usage

customerprofiles_batch_get_calculated_attribute_for_profile(
  CalculatedAttributeName, DomainName, ProfileIds, ConditionOverrides)

Arguments

CalculatedAttributeName

[required] The unique name of the calculated attribute.

DomainName

[required] The unique name of the domain.

ProfileIds

[required] List of unique identifiers for customer profiles to retrieve.

ConditionOverrides

Overrides the condition block within the original calculated attribute definition.

Value

A list with the following syntax:

list(
  Errors = list(
    list(
      Code = "string",
      Message = "string",
      ProfileId = "string"
    )
  ),
  CalculatedAttributeValues = list(
    list(
      CalculatedAttributeName = "string",
      DisplayName = "string",
      IsDataPartial = "string",
      ProfileId = "string",
      Value = "string"
    )
  ),
  ConditionOverrides = list(
    Range = list(
      Start = 123,
      End = 123,
      Unit = "DAYS"
    )
  )
)

Request syntax

svc$batch_get_calculated_attribute_for_profile(
  CalculatedAttributeName = "string",
  DomainName = "string",
  ProfileIds = list(
    "string"
  ),
  ConditionOverrides = list(
    Range = list(
      Start = 123,
      End = 123,
      Unit = "DAYS"
    )
  )
)