List Profile Objects
customerprofiles_list_profile_objects | R Documentation |
Returns a list of objects associated with a profile of a given ProfileObjectType¶
Description¶
Returns a list of objects associated with a profile of a given ProfileObjectType.
Usage¶
customerprofiles_list_profile_objects(NextToken, MaxResults, DomainName,
ObjectTypeName, ProfileId, ObjectFilter)
Arguments¶
NextToken |
The pagination token from the previous call to ListProfileObjects. |
MaxResults |
The maximum number of objects returned per page. |
DomainName |
[required] The unique name of the domain. |
ObjectTypeName |
[required] The name of the profile object type. |
ProfileId |
[required] The unique identifier of a customer profile. |
ObjectFilter |
Applies a filter to the response to include profile objects with the specified index values. |
Value¶
A list with the following syntax:
list(
Items = list(
list(
ObjectTypeName = "string",
ProfileObjectUniqueKey = "string",
Object = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_profile_objects(
NextToken = "string",
MaxResults = 123,
DomainName = "string",
ObjectTypeName = "string",
ProfileId = "string",
ObjectFilter = list(
KeyName = "string",
Values = list(
"string"
)
)
)