Searches for profiles within a specific domain using one or more predefined search keys (e
Source:R/customerprofiles_operations.R
customerprofiles_search_profiles.RdSearches for profiles within a specific domain using one or more predefined search keys (e.g., _fullName, _phone, _email, _account, etc.) and/or custom-defined search keys. A search key is a data type pair that consists of a KeyName and Values list.
See https://www.paws-r-sdk.com/docs/customerprofiles_search_profiles/ for full documentation.
Usage
customerprofiles_search_profiles(
NextToken = NULL,
MaxResults = NULL,
DomainName,
KeyName,
Values,
AdditionalSearchKeys = NULL,
LogicalOperator = NULL
)Arguments
- NextToken
The pagination token from the previous SearchProfiles API call.
- MaxResults
The maximum number of objects returned per page.
The default is 20 if this parameter is not included in the request.
- DomainName
[required] The unique name of the domain.
- KeyName
[required] A searchable identifier of a customer profile. The predefined keys you can use to search include: _account, _profileId, _assetId, _caseId, _orderId, _fullName, _phone, _email, _ctrContactId, _marketoLeadId, _salesforceAccountId, _salesforceContactId, _salesforceAssetId, _zendeskUserId, _zendeskExternalId, _zendeskTicketId, _serviceNowSystemId, _serviceNowIncidentId, _segmentUserId, _shopifyCustomerId, _shopifyOrderId.
- Values
[required] A list of key values.
- AdditionalSearchKeys
A list of
AdditionalSearchKeyobjects that are each searchable identifiers of a profile. EachAdditionalSearchKeyobject contains aKeyNameand a list ofValuesassociated with that specific key (i.e., a key-value(s) pair). These additional search keys will be used in conjunction with theLogicalOperatorand the requiredKeyNameandValuesparameters to search for profiles that satisfy the search criteria.- LogicalOperator
Relationship between all specified search keys that will be used to search for profiles. This includes the required
KeyNameandValuesparameters as well as any key-value(s) pairs specified in theAdditionalSearchKeyslist.This parameter influences which profiles will be returned in the response in the following manner:
AND- The response only includes profiles that match all of the search keys.OR- The response includes profiles that match at least one of the search keys.
The
ORrelationship is the default behavior if this parameter is not included in the request.