Hi @RamnathRa1
Ideally, the Target Page parameters and profile parameters must sent with data object like below.
alloy("sendEvent", {
"data": {
"__adobe": {
"target": {
"profile.userloggedinType": "true",
"user.categoryId": "clothing"
}
}
}
});
return data;
Pass if any additional parameters and then in your launch system based on your rule configuration for ex:
-
Open the all pages - library loaded - send event - 50
rule
-
Select the Adobe Experience Platform Web SDK - Send event
action
-
Add the data.content
data element to the Data field
- Save your changes and build library.
Check in adobe debugger and validate under data
> __adobe
> target
and see if profile.userLoggedinType and user.CategoryID. If you are able to see then
simply login to Adobe Target under Audience-> Visitor Profile -> you can see userLoggedinType attribute will be available.
Hope this helps.