Automate Email Link

I am trying to send an email from automate that links to a specific object view. The automate triggers when certain objects are added to a set and I want the button to take them to an object view that is embedded in carbon.

I only see the possibility of sending them to the carbon, is there the ability to link them to the object view in carbon?

Hi ally,

The only way I was able to do this, (there might be a better option, but this one works)

It is to send it via a typescript notification function and you send the link as:

           let  yourobject = Objects.search().yourobject()(…)

            link = "https://your-palantir-foundry.com/workspace/carbon/ri.carbon.main.workspace.idforyourworkspace/object-view?param.objectRid=" + yourobject[0].rid

to set up the function ()Function

 shortNotification = ShortNotification.builder()

                .heading(subject.substring(0,100))

                .content(body.substring(0,100))

                .addUrlLink("View object view",link)

                .build();

emailNotificationContent = EmailNotificationContent.builder()

                .subject(subject)

                .body(body)

                .addUrlLink("View object view ",link)

                .build();

Hope it helps