← Back to changelog
Jun 3, 2026

Apple Shortcuts Support for Push Notifications and Live Activities

Apple Shortcuts support for ActivitySmith Push Notifications and Live Activities

ActivitySmith now supports Apple Shortcuts in Push Notification redirection, Push Notification Actions, and the Live Activity Action.

What Is an Apple Shortcut?

An Apple Shortcut is a saved automation in the Shortcuts app. It can combine app actions, system settings, and web requests into one command. You can use a Shortcut to open an app, so a Push Notification tap, Push Notification Action, or Live Activity Action can jump directly into the local tool you want to use next.

Learn how Shortcuts work

Run Apple Shortcuts From Notifications

Push Notification redirection can now use shortcuts:// URLs alongside regular https:// links. Push Notification Actions and the Live Activity Action can use the same Shortcut URLs with the existing open_url type:

ActivitySmith Push Notification Actions with an Apple Shortcut action

curl -X POST https://activitysmith.com/api/push-notification \
-H "Authorization: Bearer $ACTIVITYSMITH_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "🤖 Jarvis",
"message": "Task finished",
"redirection": "shortcuts://run-shortcut?name=Jarvis",
"actions": [
{
"title": "Open run",
"type": "open_url",
"url": "https://github.com/acme/web/actions/runs/1234567890"
},
{
"title": "Chat with Jarvis",
"type": "open_url",
"url": "shortcuts://run-shortcut?name=Jarvis"
}
]
}'

Availability

Available now across the API, SDKs, and CLI.

Shortcut support is available in the ActivitySmith iOS app version 1.10.1 and newer.