Evening everyone,
I have got an automation fired by a webhook which will contain a phone number. Is there anyway to get an actionable button to open the dialer app with the number? I have tried both action as “CALL” which seems to be ios specific and does nothing and URI which returns 404 not found.
Here is the code:
- id: "164"
alias: New Request
description: Send new request through to mobile
trigger:
- platform: webhook
webhook_id: newrequest
action:
- service: notify.mobile_app_m
data:
message: >-
Subject {{trigger.json.freshdesk_webhook.ticket_subject}} {{" \n "}}
Caller {{trigger.json.freshdesk_webhook.ticket_contact_name}} {{" \n "}}
Priority {{trigger.json.freshdesk_webhook.ticket_priority}}
title: New Request
data:
actions:
- action: "URI"
title: "Call Mob"
uri: "tel:{{trigger.json.freshdesk_webhook.ticket_contact_mobile}}"
mode: single
Anyone know a way of making it work?