Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Getting a specific Mirror page URL and getMirrorURL method

Avatar

Level 3

Hi.

I'm trying to create a recipient delivery report in Adobe Campaign showing all the deliveries a recipient received over time.

In addition I want to add by each of the deliveries the link to the mirror page of this recipient.

for example:

http://myUrl/nl/jsp/m.jsp?c=%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX%3D

The 'XXX...' part is the different part for each recipient/delivery

I'm trying to get the url programmatically using javascript.

I've looked in the documentation and also in this forum, and saw a similar issue (https://forums.adobe.com/message/9792714#9792714)

but still couldn't figure out how to do it.

According to the answer there I can use the 'GetMirrorURL' method but I'm not sure what parameters I should give to this function.

Looking in the jaspi help I saw it gets 'eventHistoId' from schema nms:eventHisto.

This table is empty on my system, and I'm not sure how it is related.

Also tried running this method with different parameters like broadlogID but I get an error saying 'Error while compiling script - GetMirrorUrl is not defined.'

Can someone please help me understand how to handle this method or is there a different way of getting the URL

Adobe Campaign Version 6.1.1 build 8754

Server version 6.1.1 build 8754

Thanks,

Sagi

1 Accepted Solution

Avatar

Correct answer by
Level 3

One more thing, the 2nd parameter needs to be passed as string i.e. within quotes ("1402")

View solution in original post

12 Replies

Avatar

Level 10

Hi Sagi,

Have you tried with the GetMirrorURL method from the nms:delivery schema (it can also be found in the JSAPI documentation)? You just need to pass the following parameters:

  • deliveryId: Delivery identifier
  • message: Message ID

Florent

Avatar

Level 3

Hi Florent,

Tried using it but it didn't work.
Also I'm not sure I'm using the right 'message'

I only found Message ID in nms:broadlogMsg table and its the same value (1402) for all recipients that the email was sent to.

This message id is indicating if an email was sent or not and failure reason, I don't think this is what the GetMirrorURL expect to get.

Can you advise where can I find the required message ID?

When trying to run it like that I get the same error:

var url = GetMirrorURL (232676406,1402)

19/11/2017 09:30:11 JST-310000 Error while compiling script 'WKF2545/js2' line 2: GetMirrorURL is not defined.

Avatar

Level 3

Hi Sagi,

Please use nms.delivery.GetMirrorURL(232676406,1402) and not only GetMirrorURL(232676406,1402).

Thanks,

Subhajit

Avatar

Correct answer by
Level 3

One more thing, the 2nd parameter needs to be passed as string i.e. within quotes ("1402")

Avatar

Level 3

Its working now!

Many thanks for your help

Sagi

Avatar

Level 2

Hi Sagi.

I'm not a developer, I'm an email marketer trying to make this work too. Would you be willing to share your code?

Avatar

Level 3

Hi sure

I've used in a JavaScript activity inside a workflow for example:

var url = nms.delivery.GetMirrorURL(332656168,"20916262")

logInfo('var url: ' + url)

332656168 - is the delivery id

20916262 - is the broadlogId (not the messageID)

If you need to use it with variables like I did, then:

instance.vars.deliveryId = 332656168

instance.vars.broadlogId = 20916262

instance.vars.broadlogId = instance.vars.broadlogId.toString()

var url = nms.delivery.GetMirrorURL(instance.vars.deliveryId,instance.vars.broadlogId)

logInfo('var url: ' + url)

Hope it helps!

Avatar

Level 1
@sagil23995776 Is there a way to dynamically pull back all available deliveryIds and broadLogIds instead of defining 1 version in your code?

Avatar

Level 2

It was helpful! I am getting this error though:

11/21/2017 4:37:20 PM JavaScript: error while evaluating script 'WKF1117/js'.

11/21/2017 4:37:20 PM Error while executing the method 'GetMirrorURL' of service 'nms:delivery'.

11/21/2017 4:37:20 PM Cannot load document of type 'Deliveries (nms:delivery)' satisfying condition '(@id = 332656168) AND ((@deleteStatus = 0))'.

11/21/2017 4:37:20 PM The requested database record does not exist.

11/21/2017 4:37:20 PM AND ((D0.iDeleteStatus = :2))' could not be executed.   Param(0)=332656168   Param(1)=0

11/21/2017 4:37:20 PM SQL statement 'SELECT   D0.iMappingId, D0.iDeliveryMode, D0.iMidRemoteId, E1.sMirrorURL, E1.sAccount, E1.sPassword, E1.sServer, D0.mData FROM NmsDelivery D0 JOIN NmsExtAccount E1 ON (E1.iExtAccountId = D0.iDeliveryProviderId) WHERE (D0.iDeliveryId = :1)

Avatar

Level 3

Hi,

I looks like you've copied the code I shared without replacing the parameters.

You probably don't have a delivery id =332656168 in your system so its failing

also the broadlogid need to match the delivery id.

Just replace the parameters to correspond the delivery you wish to check.

Sagi

Avatar

Level 2

Hi Sagi,

 

I tried using the Javascript function you shared above in order to fetch the mirror page URL with custom delivery & broadlogId, but still I am getting "the record not found" error. I tried for multiple deliveries.

Any suggestions please.

 

Thanks

Avatar

Level 2

Thanks so much! Got it to pull back the url!