View Contact And Log Details
App Connect can open the corresponding CRM contact or activity page for matched contacts and logged calls.

Configure this in the platform manifest:
| Field | Description |
|---|---|
canOpenLogPage |
When true, logged activities open logPageUrl. When false, they open contactPageUrl. |
contactPageUrl |
Contact URL template. Supports {hostname}, {contactId}, and {contactType}. |
logPageUrl |
Activity/log URL template. Supports {hostname}, {logId}, {contactId}, and {contactType} where available. |
Example:
{
"canOpenLogPage": true,
"contactPageUrl": "https://{hostname}/contacts/{contactId}",
"logPageUrl": "https://{hostname}/activities/{logId}"
}
Values come from connector responses:
contactIdandcontactTypecome from contact lookup or log submission data.logIdcomes fromcreateCallLogorcreateMessageLog.hostnamecomes from the connected user record.