Adobe Campaign Purge A folder of Recipients | Adobe Higher Education
Skip to main content
Level 2
March 29, 2018
Répondu

Adobe Campaign Purge A folder of Recipients

I have a folder containing recipients that I want to purge.

Basically we have moved some recipients into this folder that we wish to delete and as per some Adobe instructions I found then to delete these recipients we should purge the folder, I want to do this in a script in a workflow using:

nms.recipient.ClearFolder(<recipient folderId="869848332" />);

where 869848332 is the folder id of the folder I am trying to purge, but when I run this nothing seems to happen.

Jeremy

Ce sujet a été fermé aux réponses.
Meilleure réponse par florentlb

Hi Jeremy,

You're right, I've just remembered this note in the workflow documentation:

For example, deleting a recipient via a workflow will not result in all of the recipient's delivery history being deleted. However, deleting a recipient directly in the 'Recipients' folder will indeed result in all data linked with this recipient being deleted.

So purging the folder is the right solution. However, I'm not sure if the ClearFolder function is really purging the data or simply removing the data from the folder but without deleting it from the database.

Have you tried other syntax? In the JSAPI, the ClearFolder function seems to only need the folder ID as parameter, so maybe something like ClearFolder("869848332")

If this is not a syntax problem, then I don't know any other similar function available to purge recipient data, so doing it manually would be the only way.

Florent

6 commentaires

florentlb
Level 10
April 18, 2018

Hi Jeremy,

I'm not really good at JavaScript but why not trying to use the Data Update activity in a workflow (with the Delete action)?

Florent

Level 2
April 18, 2018

Hi,

Thanks for you help.

I only went down the purge route to delete recipients because of some documentation I found: Managing profiles

I imagined this was something to do with fully removing history, subscriptions etc.?

Jeremy

florentlb
florentlbRéponse
Level 10
April 19, 2018

Hi Jeremy,

You're right, I've just remembered this note in the workflow documentation:

For example, deleting a recipient via a workflow will not result in all of the recipient's delivery history being deleted. However, deleting a recipient directly in the 'Recipients' folder will indeed result in all data linked with this recipient being deleted.

So purging the folder is the right solution. However, I'm not sure if the ClearFolder function is really purging the data or simply removing the data from the folder but without deleting it from the database.

Have you tried other syntax? In the JSAPI, the ClearFolder function seems to only need the folder ID as parameter, so maybe something like ClearFolder("869848332")

If this is not a syntax problem, then I don't know any other similar function available to purge recipient data, so doing it manually would be the only way.

Florent

florentlb
Level 10
May 11, 2018

Hey Jeremy,

Were you able to find a solution for this?

Let me know,

Florent

Level 2
May 14, 2018

We were able to use the purge option to do the test deletion but could not get the ClearFolder option to work so we will purge manually which is fine

Thanks

david--garcia
Level 10
September 17, 2022

I know this is an old thread, but the correct way is as followings

 

var x = nms.recipient.ClearFolder('<folder>18057971</folder>');

 

17/09/2022 02:13:15 js14 Deletion of 5 record(s) from table 'NmsRecipient' completed in 0.0s and 1 step(s)
17/09/2022 02:13:15 js14 Deletion of 6 record(s) from table 'NmsSubHisto' completed in 0.0s and 1 step(s)
17/09/2022 02:13:15 js14 Deletion of 4 record(s) from table 'NmsSubscription' completed in 0.0s and 1 step(s)

 

Neither right clicking on the workflow and purging it, or running the above function deletes broadlogRcp data, but i found it to delete trackinglog data and subscription, I will feedback once I gather some intel from campaign source code.