This API clears the in-memory cache that contains the prefetched offers.
{% tabs %} {% tab title="Android" %}
public static void clearPrefetchCache()
Target.clearPrefetchCache();
{% endtab %}
{% tab title="iOS" %}
+ (void) clearPrefetchCache;
Here are some examples in Objective C and Swift:
Objective C
[ACPTarget clearPrefetchCache];
Swift
ACPTarget.clearPrefetchCache()
{% endtab %}
{% tab title="React Native" %}
clearPrefetchCache();
JavaScript
ACPTarget.clearPrefetchCache();
{% endtab %} {% endtabs %}
This API gets the current Target extension version.
{% tabs %} {% tab title="Android" %}
public static String extensionVersion()
Target.extensionVersion();
{% endtab %}
{% tab title="iOS" %}
+ (nonnull NSString*) extensionVersion;
Here are some examples in Objective C and Swift:
Objective C
[ACPTarget extensionVersion];
Swift
ACPTarget.extensionVersion()
{% endtab %}
{% tab title="React Native" %}
extensionVersion(): Promise<string>
- A Promise object is returned and is resolved with the extension version value.
JavaScript
ACPTarget.extensionVersion().then(version => {
// read Target extension version
});
{% endtab %} {% endtabs %}
This API gets the custom visitor ID for Target. If no third-party ID was previously set, or if the ID was reset by calling resetExperience
API, it will have a null
value.
{% tabs %} {% tab title="Android" %}
public static void getThirdPartyId(final AdobeCallback<String> callback)
Target.getThirdPartyId(new AdobeCallback<String>() {
@Override
public void call(String thirdPartyId) {
// read Target thirdPartyId
}
});
- callback is invoked with the
thirdPartyId
value. If no third-party ID was set, this value will benull
. {% endtab %}
{% tab title="iOS" %}
+ (void) getThirdPartyId: (nonnull void (^) (NSString* __nullable thirdPartyId)) callback;
- callback is invoked with the
thirdPartyId
value. If no third-party ID was set, this value will benil
.
Here are the examples in Objective C and Swift:
[ACPTarget getThirdPartyId:^(NSString *thirdPartyId){
// read Target thirdPartyId
}];
Swift
ACPTarget.getThirdPartyId({thirdPartyID in
// read Target thirdPartyId
})
{% endtab %}
{% tab title="React Native" %}
getThirdPartyId(): Promise<string>
- A Promise object is returned and is resolved with the
thirdPartyId
value.
JavaScript
ACPTarget.getThirdPartyId().then(thirdPartyId => {
// read Target thirdPartyId
});
{% endtab %} {% endtabs %}
This API gets the Target user identifier. Target returns the tntId
with a successful call to loadRequests
or prefetchContent
, which is then persisted in the SDK.
{% hint style="info" %}
This ID is preserved between app upgrades, is saved and restored during the standard application backup process, and is removed at uninstall or when the resetExperience
API is used.
{% endhint %}
{% tabs %} {% tab title="Android" %}
public static void getTntId(final AdobeCallback<String> callback)
- callback is invoked with the
tntId
value. If no Target ID was set, this value will benull
.
Target.getTntId(new AdobeCallback<String>() {
@Override
public void call(String tntId) {
// read target's tntid
}
});
{% endtab %}
{% tab title="iOS" %}
+ (void) getTntId: (nonnull void (^) (NSString* __nullable tntId)) callback;
- callback is invoked with the
tntId
value. If no Target ID was set, this value will benil
.
Here are some examples in Objective C and Swift:
Objective C
[ACPTarget getTntId:^(NSString *tntId){
// read target's tntId
}];
Swift
ACPTarget.getTntId({tntId in
// read target's tntId
})
{% endtab %}
{% tab title="React Native" %}
getTntId(): Promise<string>
- A Promise object is returned and is resolved with the
tntId
value. If no Target ID was set, this value will benull
.
JavaScript
ACPTarget.getTntId().then(tntId => {
// read target's tntId
});
{% endtab %} {% endtabs %}
This API sends a location (mbox) click notification to the configured Target server and can be invoked in the following cases:
- For a prefetched mbox, after the mbox content is retrieved using the
retrieveLocationContent
API. - For a regular mbox, where no previous prefetch request is made, and the mbox content is retrieved using the
retrieveLocationContent
API.
{% hint style="warning" %} For a click notification to be sent to Target, ensure that the click metric is enabled for the specified mbox name in Target. {% endhint %}
{% tabs %} {% tab title="Android" %}
public static void locationClicked(final String mboxName, final TargetParameters parameters)
- mboxName is a String the contains the mbox location for which the click notification will be sent to Target.
- parameters is the configured
TargetParameters
for the request.
// Mbox parameters
Map<String, String> mboxParameters = new HashMap<>();
mboxParameters.put("membership", "prime");
// Product parameters
TargetProduct targetProduct = new TargetProduct("CEDFJC", "Electronics");
// Order parameters
List<String> purchasedIds = new ArrayList<String>();
purchasedIds.add("81");
purchasedIds.add("123");
purchasedIds.add("190");
TargetOrder targetOrder = new TargetOrder("NJJICK", "650", purchasedIds);
// Profile parameters
Map<String, String> profileParameters = new HashMap<>();
profileParameters.put("ageGroup", "20-32");
// Create Target Parameters
TargetParameters targetParameters = new TargetParameters.Builder(mboxParameters)
.profileParameters(profileParameters)
.order(targetOrder)
.product(targetProduct)
.build();
Target.locationClicked("cartLocation", targetParameters);
{% endtab %}
{% tab title="iOS" %}
+ (void) locationClickedWithName: (nonnull NSString*) name targetParameters: (nullable ACPTargetParameters*) parameters;
- name is an NSString that contains the mbox location for which the click notification will be sent to Target.
- parameters is the configured
ACPTargetParameters
for the request.
Here are some examples in Objective C and Swift:
// Mbox parameters
NSDictionary *mboxParameters = @{@"membership":@"prime"};
// Product parameters
NSDictionary *productParameters = @{@"id":@"CEDFJC",
@"categoryId":@"Electronics"};
// Order parameters
NSDictionary *orderParameters = @{@"id":@"NJJICK",
@"total":@"650",
@"purchasedProductIds":@"81, 123, 190"};
// Profile parameters
NSDictionary *profileParameters = @{@"ageGroup":@"20-32"};
// Create Target parameters
ACPTargetProduct *product = [ACPTargetProduct targetProductWithId:@"24D334" categoryId:@"Stationary"];
ACPTargetOrder *order = [ACPTargetOrder targetOrderWithId:@"ADCKKBC" total:@(400.50) purchasedProductIds:@[@"34", @"125"]];
ACPTargetParameters *targetParameters = [ACPTargetParameters targetParametersWithParameters:nil
profileParameters:nil
product:product
order:order];
[ACPTarget locationClickedWithName:@"cartLocation" targetParameters:targetParameters];
Swift
// Mbox parameters
let mboxParameters = [
"membership": "prime"
]
// Product parameters
let productParameters = [
"id": "CEDFJC",
"categoryId": "Electronics"
]
// Order parameters
let orderParameters = [
"id": "NJJICK",
"total": "650",
"purchasedProductIds": "81, 123, 190"
]
// Profile parameters
let profileParameters = [
"ageGroup": "20-32"
]
// Create Target parameters
let product = ACPTargetProduct(id: "24D334", categoryId: "Stationary")
let order = ACPTargetOrder(id: "ADCKKBC", total: NSNumber(value: 400.50), purchasedProductIds: ["34", "125"])
let targetParameters = ACPTargetParameters(parameters: nil, profileParameters: nil, product: product, order: order)
ACPTarget.locationClicked(withName: "cartLocation", targetParameters: targetParameters)
{% endtab %}
{% tab title="React Native" %}
locationClickedWithName(name: string, parameters?: ACPTargetParameters)
- name is a string that contains the mbox location for which the click notification will be sent to Target.
- parameters is the configured
ACPTargetParameters
for the request.
JavaScript
// Mbox parameters
var mboxParameters = {"membership": "prime"};
// Product parameters
var productParameters = new ACPTargetProduct("CEDFJC", "Electronics");
// Order parameters
var orderParameters = new ACPTargetOrder("NJJICK", 650, ["81","123","190"]);
// Profile parameters
var profileParameters = {"ageGroup": "20-32"};
// Create Target parameters
var product = new ACPTargetProduct("24D334", "Stationary");
var order = new ACPTargetOrder("ADCKKBC", 400.50, ["34","125"]);
var targetParameters = new ACPTargetParameters(null, null, product, order);
ACPTarget.locationClickedWithName("cartLocation", targetParameters);
{% endtab %} {% endtabs %}
Use this API to send a location (mbox) display notification to the configured Target server. This API should be invoked for a prefetched mbox after the mbox content is retrieved using the retrieveLocationContent
API. If no previous prefetch request is made, and the mbox content is retrieved using the retrieveLocationContent
API, calling this API does not trigger a notification request to the Target server.
{% hint style="warning" %}
Do not use this API with the deprecated loadRequests API. For a prefetched mbox, after calling the deprecated loadRequests
API, the mbox display notification is sent internally to the Target server by the SDK.
{% endhint %}
{% tabs %} {% tab title="Android" %}
public static void locationsDisplayed(final List<String> mboxNames, final TargetParameters targetParameters)
- mboxNames is a list of the mbox locations for which the display notification will be sent to Target.
- targetParameters is the configured
TargetParameters
for the request.
List<String> purchasedProductIds = new ArrayList<String>();
purchasedProductIds.add("34");
purchasedProductIds.add("125");
TargetOrder targetOrder = new TargetOrder("123", 567.89, purchasedProductIds);
TargetProduct targetProduct = new TargetProduct("123", "Books");
TargetParameters targetParameters = new TargetParameters.Builder()
.parameters(new HashMap<String, String>())
.profileParameters(new HashMap<String, String>())
.product(targetProduct)
.order(targetOrder)
.build();
List<String> mboxList = new ArrayList<>();
mboxList.add("mboxName1");
Target.locationsDisplayed(mboxList, targetParameters);
{% endtab %}
{% tab title="iOS" %}
+ (void) locationsDisplayed: (nonnull NSArray<NSString*>*) mboxNames
withTargetParameters: (nullable ACPTargetParameters*) targetParameters;
- mboxNames is an NSArray of the mbox locations for which the display notification will be sent to Target.
- targetParameters is the configured
ACPTargetParameters
for the request.
Here are some examples in Objective C and Swift:
Objective C
ACPTargetProduct *product = [ACPTargetProduct targetProductWithId:@"24D334" categoryId:@"Stationary"];
ACPTargetOrder *order = [ACPTargetOrder targetOrderWithId:@"ADCKKBC" total:@(400.50) purchasedProductIds:@[@"34", @"125"]];
ACPTargetParameters *targetParameters = [ACPTargetParameters targetParametersWithParameters:nil
profileParameters:nil
product:product
order:order];
[ACPTarget locationsDisplayed:@[@"mboxName1", @"mboxName2"] withTargetParameters:targetParameters];
Swift
let product = ACPTargetProduct(id: "24D334", categoryId: "Stationary")
let order = ACPTargetOrder(id: "ADCKKBC", total: NSNumber(value: 400.50), purchasedProductIds: ["34", "125"])
let targetParameters = ACPTargetParameters(parameters: nil, profileParameters: nil, product: product, order: order)
ACPTarget.locationsDisplayed(["mboxName1", "mboxName2"], with: targetParameters)
{% endtab %}
{% tab title="React Native" %}
locationsDisplayed(mboxNames: Array<string>, parameters?: ACPTargetParameters)
- mboxNames is an Array of the mbox locations for which the display notification will be sent to Target.
- targetParameters is the configured
ACPTargetParameters
for the request.
JavaScript
var product = new ACPTargetProduct("24D334", "Stationary");
var order = new ACPTargetOrder("ADCKKBC", 400.50, ["34", "125"]);
var targetParameters = new ACPTargetParameters(null, null, product, order);
ACPTarget.locationsDisplayed(["mboxName1", "mboxName2"], targetParameters);
{% endtab %} {% endtabs %}
This API sends a prefetch request to your configured Target server with the prefetch objects array and the specified target parameters. For more information, see Offer prefetch.
{% tabs %} {% tab title="Android" %}
public static void prefetchContent(final List<TargetPrefetch> targetPrefetchList,
final TargetParameters targetParameters,
final final AdobeCallback<String> callback);
- targetPrefetchList is a list of
TargetPrefetch
objects for various mbox locations. - targetParameters is the configured
TargetParameters
for the prefetch request. - If the prefetch is successful, callback is invoked with a
null
value. If the prefetch is not successful, an error message is returned.
// first prefetch request
Map<String, String> mboxParameters1 = new HashMap<>();
mboxParameters1.put("status", "platinum");
TargetParameters targetParameters1 = new TargetParameters.Builder()
.parameters(mboxParameters1)
.build();
TargetPrefetch prefetchRequest1 = new TargetPrefetch("mboxName1", targetParameters1);
// second prefetch request
Map<String, String> mboxParameters2 = new HashMap<>();
mboxParameters2.put("userType", "paid");
List<String> purchasedIds = new ArrayList<String>();
purchasedIds.add("34");
purchasedIds.add("125");
TargetOrder targetOrder = new TargetOrder("ADCKKIM", 344.30, purchasedIds);
TargetProduct targetProduct = new TargetProduct("24D3412", "Books");
TargetParameters targetParameters2 = new TargetParameters.Builder()
.parameters(mboxParameters2)
.product(targetProduct)
.order(targetOrder)
.build();
TargetPrefetch prefetchRequest2 = new TargetPrefetch("mboxName2", targetParameters2);
List<TargetPrefetch> prefetchMboxesList = new ArrayList<>();
prefetchMboxesList.add(prefetchRequest1);
prefetchMboxesList.add(prefetchRequest2);
// Call the prefetchContent API.
TargetParamters targetParameters = null;
Target.prefetchContent(prefetchMboxesList, targetParameters, prefetchStatusCallback);
{% endtab %}
{% tab title="iOS" %}
+ (void) prefetchContent: (nonnull NSArray<ACPTargetPrefetchObject*>*) targetPrefetchObjectArray
withParameters: (nullable ACPTargetParameters*) targetParameters
callback: (nullable void (^) (NSError* _Nullable error)) callback;
- targetPrefetchObjectArray is an array of
ACPTargetPrefetchObject
objects for various mbox locations. - targetParameters is the configured
ACPTargetParameters
for the prefetch request. - If the prefetch is successful, callback is invoked with a
nil
value. If the prefetch is not successful, an error message is returned.
Here are some examples in Objective C and Swift:
Objective C
NSDictionary *mboxParameters1 = @{@"status":@"platinum"};
NSDictionary *profileParameters1 = @{@"age":@"20"};
ACPTargetProduct *product1 = [ACPTargetProduct targetProductWithId:@"24D3412" categoryId:@"Books"];
ACPTargetOrder *order1 = [ACPTargetOrder targetOrderWithId:@"ADCKKIM" total:@(344.30) purchasedProductIds:@[@"34", @"125"]];
ACPTargetParameters *targetParameters1 = [ACPTargetParameters targetParametersWithParameters:mboxParameters1
profileParameters:profileParameters1
product:product1
order:order1];
NSDictionary *mboxParameters2 = @{@"userType":@"Paid"};
ACPTargetProduct *product2 = [ACPTargetProduct targetProductWithId:@"764334" categoryId:@"Online"];
ACPTargetOrder *order2 = [ACPTargetOrder targetOrderWithId:@"ADCKKIM" total:@(344.30) purchasedProductIds:@[@"id1",@"id2"]];
ACPTargetParameters *targetParameters2 = [ACPTargetParameters targetParametersWithParameters:mboxParameters2
profileParameters:nil
product:product2
order:order2];
// Creating Prefetch Objects
ACPTargetPrefetchObject *prefetch1 = [ACPTargetPrefetchObject targetPrefetchObjectWithName:@"logo"
targetParameters:targetParameters1];
ACPTargetPrefetchObject *prefetch2 = [ACPTargetPrefetchObject targetPrefetchObjectWithName:@"buttonColor"
targetParameters:targetParameters2];
// Creating prefetch Array
NSArray *prefetchArray = @[prefetch1,prefetch2];
// Creating Target parameters
NSDictionary *mboxParameters = @{@"status":@"progressive"};
NSDictionary *profileParameters = @{@"age":@"20-32"};
ACPTargetProduct *product = [ACPTargetProduct targetProductWithId:@"24D334" categoryId:@"Stationary"];
ACPTargetOrder *order = [ACPTargetOrder targetOrderWithId:@"ADCKKBC" total:@(400.50) purchasedProductIds:@[@"34", @"125"]];
ACPTargetParameters *targetParameters = [ACPTargetParameters targetParametersWithParameters:mboxParameters
profileParameters:profileParameters
product:product
order:order];
// Target API Call
[ACPTarget prefetchContent:prefetchArray withParameters:targetParameters callback:^(NSError * _Nullable error){
// do something with the callback response
}];
Swift
let mboxParameters1 = [
"status": "platinum"
]
let profileParameters1 = [
"age": "20"
]
let product1 = ACPTargetProduct(id: "24D3412", categoryId: "Books")
let order1 = ACPTargetOrder(id: "ADCKKIM", total: NSNumber(value: 344.30), purchasedProductIds: ["34", "125"])
let targetParameters1 = ACPTargetParameters(parameters: mboxParameters1, profileParameters: profileParameters1, product: product1, order: order1)
let mboxParameters2 = [
"userType": "Paid"
]
let product2 = ACPTargetProduct(id: "764334", categoryId: "Online")
let order2 = ACPTargetOrder(id: "ADCKKIM", total: NSNumber(value: 344.30), purchasedProductIds: ["id1", "id2"])
let targetParameters2 = ACPTargetParameters(parameters: mboxParameters2, profileParameters: nil, product: product2, order: order2)
// Creating Prefetch Objects
let prefetch1 = ACPTargetPrefetchObject(name: "logo", targetParameters: targetParameters1)
let prefetch2 = ACPTargetPrefetchObject(name: "buttonColor", targetParameters: targetParameters2)
// Creating prefetch Array
let prefetchArray = [prefetch1, prefetch2]
// Creating Target parameters
let mboxParameters = [
"status": "progressive"
]
let profileParameters = [
"age": "20-32"
]
let product = ACPTargetProduct(id: "24D334", categoryId: "Stationary")
let order = ACPTargetOrder(id: "ADCKKBC", total: NSNumber(value: 400.50), purchasedProductIds: ["34", "125"])
let targetParameters = ACPTargetParameters(parameters: mboxParameters, profileParameters: profileParameters, product: product, order: order)
// Target API Call
ACPTarget.prefetchContent(prefetchArray, with: targetParameters, callback: { error in
// do something with the callback response
})
{% endtab %}
{% tab title="React Native" %}
prefetchContent(prefetchObjectArray: Array<ACPTargetPrefetchObject>, parameters?: ACPTargetParameters): Promise<any>
- prefetchObjectArray is an Array of
ACPTargetPrefetchObject
objects for various mbox locations. - parameters is the configured
ACPTargetParameters
for the prefetch request. - A Promise object is returned and is resolved with true value or is rejected with the reason for the error.
JavaScript
var mboxParameters1 = {"status": "platinum"};
var profileParameters1 = {"age": "20"};
var product1 = new ACPTargetProduct("24D3412", "Books");
var order1 = new ACPTargetOrder("ADCKKIM", 344.30, ["34","125"]);
var targetParameters1 = new ACPTargetParameters(mboxParameters1, profileParameters1, product1, order1);
var mboxParameters2 = {"userType": "Paid"};
var product2 = new ACPTargetProduct("764334", "Online");
var order2 = new ACPTargetOrder("ADCKKIM", 344.30, ["id1","id2"]);
var targetParameters2 = new ACPTargetParameters(mboxParameters2, null, product2, order2);
// Creating Prefetch Objects
var prefetch1 = new ACPTargetPrefetchObject("logo", targetParameters1);
var prefetch2 = new ACPTargetPrefetchObject("buttonColor", targetParameters2);
// Creating prefetch Array
var prefetchList = [prefetch1, prefetch2];
// Creating Target parameters
var mboxParameters = {"status": "progressive"};
var profileParameters = {"age": "20-32"};
var product = new ACPTargetProduct("24D334", "Stationary");
var order = new ACPTargetOrder("ADCKKBC", 400.50, ["34","125"]);
var targetParameters = new ACPTargetParameters(mboxParameters, profileParameters, product, order);
// Target API Call
ACPTarget.prefetchContent(prefetchList, targetParameters).then(success => console.log(success)).catch(err => console.log(err));
{% endtab %} {% endtabs %}
This API resets the user's experience by removing the visitor identifiers and resetting the Target session. Invoking this API also removes previously set Target user ID and custom visitor IDs, Target Edge Host, and the session information from persistent storage.
{% tabs %} {% tab title="Android" %}
public static void resetExperience()
Target.resetExperience();
{% endtab %}
{% tab title="iOS" %}
+ (void) resetExperience;
Here are some examples in Objective C and Swift:
Objective C
[ACPTarget resetExperience];
Swift
ACPTarget.resetExperience()
{% endtab %}
{% tab title="React Native" %}
resetExperience()
JavaScript
ACPTarget.resetExperience();
{% endtab %} {% endtabs %}
This API sends a batch request to the configured Target server for multiple mbox locations.
The main difference with the deprecated loadRequests API is in usage with prefetch APIs. For a prefetched mbox, unlike loadRequests
API, invoking this API does not send a display notification to the configured Target server. If you do not have an existing prefetch content call, and you send a batch request to Target, there is no difference in behaviors of the retrieveLocationContent
and loadRequests
APIs.
For mbox locations in the Target requests list that are not already prefetched, this API sends a batch request to the configured Target server. The content for the mbox locations that have been prefetched in a previous request are returned from the SDK, and no additional network request is made. Each Target request object in the list contains a callback function, which is invoked when content is available for its given mbox location.
{% tabs %} {% tab title="Android" %}
public static void retrieveLocationContent(final List<TargetRequest> targetRequestList,
final TargetParameters parameters)
- targetRequestList is a list of
TargetRequest
objects for various mbox locations. - parameters is the configured
TargetParameters
for the load request.
// define parameters for first request
Map<String, String> mboxParameters1 = new HashMap<>();
mboxParameters1.put("status", "platinum");
TargetParameters parameters1 = new TargetParameters.Builder().parameters(mboxParameters1).build();
TargetRequest request1 = new TargetRequest("mboxName1", parameters1, "defaultContent1",
new AdobeCallback<String>() {
@Override
public void call(String value) {
// do something with target content.
}
});
// define parameters for second request
Map<String, String> mboxParameters2 = new HashMap<>();
mboxParameters2.put("userType", "paid");
List<String> purchasedIds = new ArrayList<String>();
purchasedIds.add("34");
purchasedIds.add("125");
TargetOrder targetOrder = new TargetOrder("ADCKKIM", 344.30, purchasedIds);
TargetProduct targetProduct = new TargetProduct("24D3412", "Books");
TargetParameters parameters2 = new TargetParameters.Builder()
.parameters(mboxParameters2)
.product(targetProduct)
.order(targetOrder)
.build();
TargetRequest request2 = new TargetRequest("mboxName2", parameters2, "defaultContent2",
new AdobeCallback<String>() {
@Override
public void call(String value) {
// do something with target content.
}
});
// Creating Array of Request Objects
List<TargetRequest> locationRequests = new ArrayList<>();
locationRequests.add(request1);
locationRequests.add(request2);
// Define the profile parameters map.
Map<String, String> profileParameters1 = new HashMap<>();
profileParameters1.put("ageGroup", "20-32");
TargetParameters parameters = new TargetParameters.Builder().profileParameters(profileParameters1).build();
// Call the targetRetrieveLocationContent API.
Target.retrieveLocationContent(locationRequests, parameters);
{% endtab %}
{% tab title="iOS" %}
+ (void) retrieveLocationContent: (nonnull NSArray<ACPTargetRequestObject*>*) requests
withParameters: (nullable ACPTargetParameters*) parameters;
- ACPTargetRequestObject is an NSArray of
ACPTargetRequestObject
objects for various mbox locations. - parameters is the configured
ACPTargetParameters
for the load request.
Here are some examples in Objective C and Swift:
Objective C
NSDictionary *mboxParameters1 = @{@"status":@"platinum"};
ACPTargetProduct *product1 = [ACPTargetProduct targetProductWithId:@"24D3412" categoryId:@"Books"];
ACPTargetOrder *order1 = [ACPTargetOrder targetOrderWithId:@"ADCKKIM" total:@(344.30) purchasedProductIds:@[@"a", @"b"]];
NSDictionary *mboxParameters2 = @{@"userType":@"Paid"};
ACPTargetProduct *product2 = [ACPTargetProduct targetProductWithId:@"764334" categoryId:@"Online"];
ACPTargetOrder *order2 = [ACPTargetOrder targetOrderWithId:@"4t4uxksa" total:@(54.90) purchasedProductIds:@[@"id1",@"id2"]];
ACPTargetParameters *params1 = [ACPTargetParameters targetParametersWithParameters:mboxParameters1
profileParameters:nil
product:product1
order:order1];
ACPTargetRequestObject *request1 = [ACPTargetRequestObject targetRequestObjectWithName:@"logo" targetParameters:params1
defaultContent:@"BlueWhale" callback:^(NSString * _Nullable content) {
// do something with the received content
}];
ACPTargetParameters *params2 = [ACPTargetParameters targetParametersWithParameters:mboxParameters2
profileParameters:nil
product:product2
order:order2];
ACPTargetRequestObject *request2 = [ACPTargetRequestObject targetRequestObjectWithName:@"logo" targetParameters:params2
defaultContent:@"red" callback:^(NSString * _Nullable content) {
// do something with the received content
}];
// Create request object array
NSArray *requestArray = @[request1,request2];
// Creating Target parameters
NSDictionary *mboxParameters = @{@"status":@"progressive"};
NSDictionary *profileParameters = @{@"age":@"20-32"};
ACPTargetProduct *product = [ACPTargetProduct targetProductWithId:@"24D334" categoryId:@"Stationary"];
ACPTargetOrder *order = [ACPTargetOrder targetOrderWithId:@"ADCKKBC" total:@(400.50) purchasedProductIds:@[@"34", @"125"]];
ACPTargetParameters *targetParameters = [ACPTargetParameters targetParametersWithParameters:mboxParameters
profileParameters:profileParameters
product:product
order:order];
// Call the API
[ACPTarget retrieveLocationContent:requestArray withParameters:targetParameters];
Swift
let mboxParameters1 = [
"status": "platinum"
]
let product1 = ACPTargetProduct(id: "24D3412", categoryId: "Books")
let order1 = ACPTargetOrder(id: "ADCKKIM", total: NSNumber(value: 344.30), purchasedProductIds: ["a", "b"])
let mboxParameters2 = [
"userType": "Paid"
]
let product2 = ACPTargetProduct(id: "764334", categoryId: "Online")
let order2 = ACPTargetOrder(id: "4t4uxksa", total: NSNumber(value: 54.90), purchasedProductIds: ["id1", "id2"])
let params1 = ACPTargetParameters(parameters: mboxParameters1, profileParameters: nil, product: product1, order: order1)
let request1 = ACPTargetRequestObject(name: "logo", targetParameters: params1, defaultContent: "BlueWhale", callback: { content in
// do something with the received content
})
let params2 = ACPTargetParameters(parameters: mboxParameters2, profileParameters: nil, product: product2, order: order2)
let request2 = ACPTargetRequestObject(name: "logo", targetParameters: params2, defaultContent: "red", callback: { content in
// do something with the received content
})
// Create request object array
let requestArray = [request1, request2]
// Creating Target parameters
let mboxParameters = [
"status": "progressive"
]
let profileParameters = [
"age": "20-32"
]
let product = ACPTargetProduct(id: "24D334", categoryId: "Stationary")
let order = ACPTargetOrder(id: "ADCKKBC", total: NSNumber(value: 400.50), purchasedProductIds: ["34", "125"])
let targetParameters = ACPTargetParameters(parameters: mboxParameters, profileParameters: profileParameters, product: product, order: order)
// Call the API
ACPTarget.retrieveLocationContent(requestArray, with: targetParameters)
{% endtab %}
{% tab title="React Native" %}
retrieveLocationContent(requests: Array<ACPTargetRequestObject>, parameters?: ACPTargetParameters)
- ACPTargetRequestObject is an Array of
ACPTargetRequestObject
objects for various mbox locations. - parameters is the configured
ACPTargetParameters
for the load request.
JavaScript
var mboxParameters1 = {"status": "platinum"};
var product1 = new ACPTargetProduct("24D3412", "Books");
var order1 = new ACPTargetOrder("ADCKKIM", 344.30, ["a","b"]);
var mboxParameters2 = {"userType": "Paid"};
var product2 = new ACPTargetProduct("764334", "Online");
var order2 = new ACPTargetOrder("4t4uxksa", 54.90, ["id1","id2"]);
var params1 = new ACPTargetParameters(mboxParameters1, null, product1, order1);
var request1 = new ACPTargetRequestObject("logo", params1, "BlueWhale", (error, content) => {
if (error) {
console.error(error);
} else {
console.log("Target content:" + content);
}
});
var params2 = new ACPTargetParameters(mboxParameters2, null, product2, order2);
var request2 = new ACPTargetRequestObject("logo", params1, "red", (error, content) => {
if (error) {
console.error(error);
} else {
console.log("Target content:" + content);
}
});
// Create request object array
let requestArray = [request1, request2]
// Creating Target parameters
var mboxParameters = {"status": "progressive"};
var profileParameters = {"age": "20-32"};
var product = new ACPTargetProduct("24D334", "Stationary");
var order = new ACPTargetOrder("ADCKKBC", 400.50, ["34","125"]);
var targetParameters = new ACPTargetParameters(mboxParameters, profileParameters, product, order);
// Target API Call
ACPTarget.retrieveLocationContent(requestArray, targetParameters);
{% endtab %} {% endtabs %}
This API sets the Target preview URL to be displayed when the preview mode is enabled and preview selections are confirmed.
{% tabs %} {% tab title="Android" %}
public static void setPreviewRestartDeepLink(final Uri deepLink)
- deeplink is a Uri that contains the preview restart deeplink.
Example
Target.setPreviewRestartDeepLink("myapp://HomePage");
{% endtab %}
{% tab title="iOS" %}
+ (void) setPreviewRestartDeeplink: (nonnull NSURL*) deeplink;
- deeplink is an NSURL that contains the preview restart deeplink.
Here are some examples in Objective C and Swift:
Objective C
[ACPTarget setPreviewRestartDeepLink:@"myapp://HomePage"];
Swift
ACPTarget.setPreviewRestartDeepLink("myapp://HomePage")
{% endtab %}
{% tab title="React Native" %}
setPreviewRestartDeeplink(deepLink: string)
- deepLink is a string that contains the preview restart deeplink.
JavaScript
ACPTarget.setPreviewRestartDeeplink("myapp://HomePage");
{% endtab %} {% endtabs %}
This API sets the custom visitor ID for Target.
{% hint style="info" %}
This ID is preserved between app upgrades, is saved and restored during the standard application backup process, and is removed at uninstall or when the resetExperience
API is used.
{% endhint %}
{% tabs %} {% tab title="Android" %}
public static void setThirdPartyId(final String thirdPartyId)
- thirdPartyId is a String that contains the custom visitor ID to be set in Target.
Target.setThirdPartyId("third-party-id");
{% endtab %}
{% tab title="iOS" %}
+ (void) setThirdPartyId: (nullable NSString*) thirdPartyId;
- thirdPartyId is a NSString that contains the custom visitor ID to be set in Target.
Here are some examples in Objective C and Swift:
[ACPTarget setThirdPartyId:@"third-party-id"];
Swift
ACPTarget.setThirdPartyId("third-party-id")
{% endtab %}
{% tab title="React Native" %}
setThirdPartyId(thirdPartyId: string)
- thirdPartyId is a string that contains the custom visitor ID to be set in Target.
JavaScript
ACPTarget.setThirdPartyId("third-party-id");
{% endtab %} {% endtabs %}
{% tabs %} {% tab title="Android" %}
Here is a code sample for this class in Android:
public class TargetRequest extends TargetObject {
/**
* Instantiate a TargetRequest object
* @param mboxName String mbox name for this request
* @param targetParameters TargetParameters for this request
* @param defaultContent String default content for this request
* @param contentCallback AdobeCallback<String> which will get called with Target mbox content
*/
public TargetRequest(final String mboxName,
final TargetParameters targetParameters,
final String defaultContent,
final AdobeCallback<String> contentCallback);
/**
* Sets mbox parameters for the request.
*
* @param mboxParameters Map<String, String> mbox parameters
*/
void setMboxParameters(final Map<String, String> mboxParameters);
/**
* Sets profile parameters for the request.
*
* @param profileParameters Map<String, String profile parameters
*/
void setProfileParameters(final Map<String, String> profileParameters);
/**
* Sets order parameters for the request.
*
* @param orderParameters Map<String, Object> order parameters
*/
void setOrderParameters(final Map<String, Object> orderParameters);
/**
* Sets product parameters for the request.
*
* @param productParameters Map<String, String> product parameters
*/
void setProductParameters(final Map<String, String> productParameters);
/**
* Sets targetParameters for the request.
*
* @param targetParameters TargetParameters for the request.
*/
void setTargetParameters(final TargetParameters targetParameters);
}
Here is a code sample for this class in Android:
public class TargetPrefetch extends TargetObject {
/**
* Instantiate a TargetPrefetch object
* @param mboxName String mbox name for this prefetch request
* @param targetParameters TargetParameters for this prefetch request
*/
public TargetPrefetch(final String mboxName, final TargetParameters targetParameters)
/**
* Sets mbox parameters for the request.
*
* @param mboxParameters Map<String, String> mbox parameters
*/
void setMboxParameters(final Map<String, String> mboxParameters);
/**
* Sets profile parameters for the request.
*
* @param profileParameters Map<String, String profile parameters
*/
void setProfileParameters(final Map<String, String> profileParameters);
/**
* Sets order parameters for the request.
*
* @param orderParameters Map<String, Object> order parameters
*/
void setOrderParameters(final Map<String, Object> orderParameters);
/**
* Sets product parameters for the request.
*
* @param productParameters Map<String, String> product parameters
*/
void setProductParameters(final Map<String, String> productParameters);
/**
* Sets targetParameters for the request.
*
* @param targetParameters TargetParameters for the request.
*/
void setTargetParameters(final TargetParameters targetParameters);
}
Here is a code sample for this class in Android:
public class TargetParameters {
private TargetParameters() {}
/**
* Builder used to construct a TargetParameters object
*/
public static class Builder {
private Map<String, String> parameters;
private Map<String, String> profileParameters;
private TargetProduct product;
private TargetOrder order;
/**
* Create a TargetParameters object Builder
*/
public Builder() {}
/**
* Create a TargetParameters object Builder
*
* @param parameters mbox parameters for the built TargetParameters
*/
public Builder(final Map<String, String> parameters);
/**
* Set mbox parameters on the built TargetParameters
*
* @param parameters mbox parameters map
* @return this builder
*/
public Builder parameters(final Map<String, String> parameters);
/**
* Set profile parameters on the built TargetParameters
*
* @param profileParameters profile parameters map
* @return this builder
*/
public Builder profileParameters(final Map<String, String> profileParameters);
/**
* Set product parameters on the built TargetParameters
*
* @param product product parameters
* @return this builder
*/
public Builder product(final TargetProduct product);
/**
* Set order parameters on the built TargetParameters
*
* @param order order parameters
* @return this builder
*/
public Builder order(final TargetOrder order);
/**
* Build the TargetParameters object
*
* @return the built TargetParameters object
*/
public TargetParameters build();
}
}
Here is a code sample for this class in Android:
public class TargetOrder {
/**
* Initialize a TargetOrder with an order id, order total and a list of purchasedProductIds
*
* @param id String order id
* @param total double order total amount
* @param purchasedProductIds a list of purchased product ids
*/
public TargetOrder(final String id, final double total, final List<String> purchasedProductIds);
/**
* Get the order id
*
* @return order id
*/
public String getId();
/**
* Get the order total
*
* @return order total
*/
public double getTotal();
/**
* Get the order purchasedProductIds
*
* @return a list of this order's purchased product ids
*/
public List<String> getPurchasedProductIds();
/**
* Converts an order parameter Map to a TargetOrder
*
* @param orderParameters a Map<String, Object> of Target order parameters
* @return converted TargetOrder
*/
static TargetOrder fromMap(final Map<String, Object> orderParameters);
/**
* Converts TargetOrder to an order parameters Map.
*
* @param targetOrder a TargetOrder object
* @return Map<String, Object> containing Target order parameters
*/
static Map<String, Object> toMap(final TargetOrder targetOrder);
}
Here is a code sample for this class in Android:
public class TargetProduct {
/**
* Initialize a TargetProduct with a product id and a productCategoryId categoryId
*
* @param id String product id
* @param categoryId String product category id
*/
public TargetProduct(final String id, final String categoryId);
/**
* Get the product id
*
* @return product id
*/
public String getId();
/**
* Get the product categoryId
*
* @return product category id
*/
public String getCategoryId();
/**
* Converts a product parameter Map to a TargetProduct
*
* @param productParameters a Map<String, String> of Target product parameters
* @return converted TargetProduct
*/
static TargetProduct fromMap(final Map<String, String> productParameters);
/**
* Converts a TargetProduct object to product parameters Map.
*
* @param targetProduct a TargetProduct object
* @return Map<String, String> containing Target product parameters
*/
static Map<String, String> toMap(final TargetProduct targetProduct);
}
{% endtab %}
{% tab title="iOS" %}
This class extends ACPTargetPrefetchObject
by adding default content and a callback block that will be invoked to return mbox content from Target.
@interface ACPTargetRequestObject : ACPTargetPrefetchObject
/* The default content that will be returned if Target servers are unreachable */
@property(nonatomic, strong, nonnull) NSString* defaultContent;
/* Optional. When batch requesting Target locations, callback will be invoked when content is available for this location. */
@property(nonatomic, strong, nullable) void (^callback)(NSString* __nullable content);
@end
The following method can be used to create an instance of ACPTargetRequestObject that might be used to make a batch request to the configured Target server to fetch content for mbox locations.
+ (nonnull instancetype) targetRequestObjectWithName: (nonnull NSString*) name
targetParameters: (nullable ACPTargetParameters*) targetParameters
defaultContent: (nonnull NSString*) defaultContent
callback: (nullable void (^) (NSString* __nullable content)) callback;
This class contains the name of the Target location/mbox and target parameters to be used in a prefetch request.
@interface ACPTargetPrefetchObject : NSObject
/* The name of the Target location/mbox */
@property(nonatomic, strong, nullable) NSString* name;
/* Target parameters associated with the prefetch object. You can set all other parameters in this object */
@property(nonatomic, strong, nullable) ACPTargetParameters* targetParameters;
@end
The following method can be used to create an instance of ACPTargetPrefetchObject that might be used to make a prefetch request to the configured Target server to prefetch content for mbox locations.
+ (nonnull instancetype) targetPrefetchObjectWithName: (nonnull NSString*) name
targetParameters: (nullable ACPTargetParameters*) targetParameters;
This class contains mbox parameters dictionary, profile parameters dictionary, ACPTargetOrder object as well as ACPTargetProduct object.
@interface ACPTargetParameters : NSObject
/* Dictionary containing key-value pairs of parameters */
@property(nonatomic, strong, nullable) NSDictionary<NSString*, NSString*>* parameters;
/* Dictionary containing key-value pairs of profile parameters */
@property(nonatomic, strong, nullable) NSDictionary<NSString*, NSString*>* profileParameters;
/* ACPTargetOrder object */
@property(nonatomic, strong, nullable) ACPTargetOrder* order;
/* ACPTargetProduct object */
@property(nonatomic, strong, nullable) ACPTargetProduct* product;
@end
The following method can be used to create an instance of ACPTargetParameters.
+ (nonnull instancetype) targetParametersWithParameters: (nullable NSDictionary*) parameters
profileParameters: (nullable NSDictionary*) profileParameters
product: (nullable ACPTargetProduct*) product
order: (nullable ACPTargetOrder*) order;
This class contains orderId, total and an array for purchasedProductIds.
@interface ACPTargetOrder : NSObject
/* Order ID */
@property(nonatomic, strong, nonnull) NSString* orderId;
/* Order total */
@property(nonatomic, strong, nullable) NSNumber* total;
/* Array of Purchased Product Ids */
@property(nonatomic, strong, nullable) NSArray<NSString*>* purchasedProductIds;
@end
The following method can be used to create an instance of ACPTargetOrder.
+ (nonnull instancetype) targetOrderWithId: (nonnull NSString*) orderId
total: (nullable NSNumber*) total
purchasedProductIds: (nullable NSArray <NSString*>*) purchasedProductIds;
This class contains productId and categoryId.
@interface ACPTargetProduct : NSObject
/* Product ID */
@property(nonatomic, strong, nullable) NSString* productId;
/* Category ID */
@property(nonatomic, strong, nullable) NSString* categoryId;
@end
The following method can be used to create an instance of ACPTargetProduct.
+ (nonnull instancetype) targetProductWithId: (nonnull NSString*) productId
categoryId: (nullable NSString*) categoryId;
{% endtab %}
{% tab title="React Native" %}
This class extends ACPTargetPrefetchObject
by adding default content and a callback block that is invoked to return mbox content from Target.
class ACPTargetRequestObject extends ACPTargetPrefetchObject {
defaultContent: string;
constructor(name: string, targetParameters: ACPTargetParameters, defaultContent: string) {
super(name, targetParameters);
this.defaultContent = defaultContent;
}
}
This class contains the name of the Target location/mbox and Target parameters to be used in a prefetch request.
class ACPTargetPrefetchObject {
name: string;
targetParameters: ACPTargetParameters;
constructor(name?: string, targetParameters?: ACPTargetParameters) {
this.name = name;
this.targetParameters = targetParameters;
}
}
This class contains an mbox parameters dictionary, a profile parameters dictionary, an ACPTargetOrder
object, and an ACPTargetProduct
object.
class ACPTargetParameters {
parameters: {string: string};
profileParameters: {string: string};
order: ACPTargetOrder;
product: ACPTargetProduct;
constructor(parameters?: {string: string}, profileParameters?: {string: string}, product?: ACPTargetProduct, order?: ACPTargetOrder) {
this.parameters = parameters;
this.profileParameters = profileParameters;
this.product = product;
this.order = order;
}
}
This class contains an orderId
, the total, and an array, for purchasedProductIds
.
class ACPTargetOrder {
orderId: string;
total: number;
purchasedProductIds: Array<string>;
constructor(orderId: string, total?: number, purchasedProductIds: Array<string>) {
this.orderId = orderId;
this.total = total;
this.purchasedProductIds = purchasedProductIds;
}
}
This class contains a productId and a categoryId.
class ACPTargetProduct {
productId: string;
categoryId: string;
constructor(productId: string, categoryId: string) {
this.productId = productId;
this.categoryId = categoryId;
}
}
{% endtab %} {% endtabs %}