Skip to content

List Profile Attribute Values

customerprofiles_list_profile_attribute_values R Documentation

Fetch the possible attribute values given the attribute name

Description

Fetch the possible attribute values given the attribute name.

Usage

customerprofiles_list_profile_attribute_values(DomainName,
  AttributeName)

Arguments

DomainName

[required] The unique identifier of the domain.

AttributeName

[required] The attribute name.

Value

A list with the following syntax:

list(
  DomainName = "string",
  AttributeName = "string",
  Items = list(
    list(
      Value = "string"
    )
  ),
  StatusCode = 123
)

Request syntax

svc$list_profile_attribute_values(
  DomainName = "string",
  AttributeName = "string"
)