Skip to content

Detect Profile Object Type

customerprofiles_detect_profile_object_type R Documentation

The process of detecting profile object type mapping by using given objects

Description

The process of detecting profile object type mapping by using given objects.

Usage

customerprofiles_detect_profile_object_type(Objects, DomainName)

Arguments

Objects

[required] A string that is serialized from a JSON object.

DomainName

[required] The unique name of the domain.

Value

A list with the following syntax:

list(
  DetectedProfileObjectTypes = list(
    list(
      SourceLastUpdatedTimestampFormat = "string",
      Fields = list(
        list(
          Source = "string",
          Target = "string",
          ContentType = "STRING"|"NUMBER"|"PHONE_NUMBER"|"EMAIL_ADDRESS"|"NAME"
        )
      ),
      Keys = list(
        list(
          list(
            StandardIdentifiers = list(
              "PROFILE"|"ASSET"|"CASE"|"UNIQUE"|"SECONDARY"|"LOOKUP_ONLY"|"NEW_ONLY"|"ORDER"
            ),
            FieldNames = list(
              "string"
            )
          )
        )
      )
    )
  )
)

Request syntax

svc$detect_profile_object_type(
  Objects = list(
    "string"
  ),
  DomainName = "string"
)