Get Profile Object Type
customerprofiles_get_profile_object_type | R Documentation |
Returns the object types for a specific domain¶
Description¶
Returns the object types for a specific domain.
Usage¶
Arguments¶
DomainName
[required] The unique name of the domain.
ObjectTypeName
[required] The name of the profile object type.
Value¶
A list with the following syntax:
list(
ObjectTypeName = "string",
Description = "string",
TemplateId = "string",
ExpirationDays = 123,
EncryptionKey = "string",
AllowProfileCreation = TRUE|FALSE,
SourceLastUpdatedTimestampFormat = "string",
MaxAvailableProfileObjectCount = 123,
MaxProfileObjectCount = 123,
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"
)
)
)
),
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
Tags = list(
"string"
)
)