Zapier
By ActivitySmith
Use the official Go SDK to deliver immediate Push Notifications and Live Activity progress updates for long-running jobs and automation workflows.
go get github.com/ActivitySmithHQ/activitysmith-goSend an immediate notification for a completed task or event:

package mainimport ( activitysmithsdk "github.com/ActivitySmithHQ/activitysmith-go")func main() { apiKey := os.Getenv("ACTIVITYSMITH_API_KEY") client, err := activitysmithsdk.New(apiKey) params := activitysmithsdk.PushNotificationInput{ Title: "New subscription 💸", Message: "Customer upgraded to Pro plan", } client.Notifications.Send(params)}Send images, videos, or audio with your push notifications, press and hold to preview media directly from the notification, then tap through to open the linked content.

_, err = client.Notifications.Send(activitysmithsdk.PushNotificationInput{ Title: "Homepage ready", Message: "Your agent finished the redesign.", Media: "https://cdn.example.com/output/homepage-v2.png", Redirection: "https://github.com/acme/web/pull/482",})return err
.jpg, .png, .gif, etc..mp3, .m4a, etc..mp4, .mov, etc.Content-Type, even if the path has no extensionMedia can be combined with Redirection, but not with Actions.
Push notification redirection and actions are optional. Use them to open HTTPS URLs, run a specific iPhone Shortcut with a shortcuts://run-shortcut?name=... URL, or trigger backend webhook workflows.

_, err = client.Notifications.Send(activitysmithsdk.PushNotificationInput{ Title: "New subscription 💸", Message: "Customer upgraded to Pro plan", Redirection: "https://crm.example.com/customers/cus_9f3a1d", Actions: []activitysmithsdk.PushNotificationAction{ activitysmithsdk.PushAction( "Open CRM Profile", "open_url", "https://crm.example.com/customers/cus_9f3a1d", ), activitysmithsdk.PushAction( "Chat with Jarvis", "open_url", "shortcuts://run-shortcut?name=Jarvis", ), activitysmithsdk.PushAction( "Start Onboarding Workflow", "webhook", "https://hooks.example.com/activitysmith/onboarding/start", activitysmithsdk.PushActionMethod("POST"), activitysmithsdk.PushActionBody(map[string]interface{}{ "customer_id": "cus_9f3a1d", "plan": "pro", }), ), },})return errChoose the Live Activity type that matches what you want to show:

Show up to 8 labeled values on your Lock Screen, from revenue and orders to uptime and conversion.

Track two related values with segmented bars, such as CPU and memory.

Show progress through a known set of steps, like build, test, deploy, and verify.

Show percentage progress for jobs that move continuously toward completion.

Show status updates with a clear message, badge, and icon. When you add an action button, color controls the button tint.

Count down from a duration, or count up from 00:00 while a job runs.
Use a stable streamKey to identify the metric, job, deployment, or system you want to keep visible. The first Stream(...) call starts the Live Activity. Later calls with the same streamKey update it.

activitysmith.LiveActivities.Stream( "sales-hourly", activitysmithsdk.LiveActivityStreamInput{ Title: "Sales", Subtitle: "last hour", Type: "stats", Metrics: []activitysmithsdk.ActivityMetric{ activitysmithsdk.Metric("Revenue", "$2430", activitysmithsdk.MetricColor("blue")), activitysmithsdk.Metric("Orders", "37", activitysmithsdk.MetricColor("green")), activitysmithsdk.Metric("Conversion", "4.8%", activitysmithsdk.MetricColor("magenta")), activitysmithsdk.Metric("Avg Order", "$65.68", activitysmithsdk.MetricColor("yellow")), activitysmithsdk.Metric("Refunds", "$84", activitysmithsdk.MetricColor("red")), activitysmithsdk.Metric("New Buyers", "18", activitysmithsdk.MetricColor("cyan")), }, },)
activitysmith.LiveActivities.Stream( "prod-web-1", activitysmithsdk.LiveActivityStreamInput{ Title: "Server Health", Subtitle: "prod-web-1", Type: "metrics", Metrics: []activitysmithsdk.ActivityMetric{ activitysmithsdk.Metric("CPU", 9, activitysmithsdk.MetricUnit("%")), activitysmithsdk.Metric("MEM", 45, activitysmithsdk.MetricUnit("%")), }, },)
activitysmith.LiveActivities.Stream( "nightly-backup", activitysmithsdk.LiveActivityStreamInput{ Title: "Nightly Backup", Subtitle: "upload archive", Type: "segmented_progress", NumberOfSteps: 3, CurrentStep: 2, },)
activitysmith.LiveActivities.Stream( "search-reindex", activitysmithsdk.LiveActivityStreamInput{ Title: "Search Reindex", Subtitle: "catalog-v2", Type: "progress", Percentage: 42, },)
activitysmith.LiveActivities.Stream( "customer-ops", activitysmithsdk.LiveActivityStreamInput{ Title: "Reactivation", Message: "Lumen came back after 2 weeks", Type: activitysmithsdk.LiveActivityTypeAlert, Icon: activitysmithsdk.AlertIcon("cloud.sun", "yellow"), Badge: activitysmithsdk.AlertBadge("Customer", "magenta"), },)The icon.symbol value is an Apple SF Symbol name. Browse the catalog with one of these tools:

activitysmith.LiveActivities.Stream( "benchmark-run", activitysmithsdk.LiveActivityStreamInput{ Title: "Benchmark Run", Subtitle: "sampling", Type: "timer", DurationSeconds: 300, Color: "cyan", },)For a countdown, send duration_seconds. You can update title, subtitle, color, or any other visible field as the work changes. Leave duration_seconds out unless you want to change the timer.
To start at 00:00 and count up, set counts_down: false and leave out duration_seconds.
Call EndStream(...) with the same streamKey to dismiss the Live Activity. You can include final values before it is removed. By default, iOS removes the Live Activity after two minutes. Set AutoDismissMinutes to choose a different dismissal time, including 0 for immediate dismissal.
activitysmith.LiveActivities.EndStream( "prod-web-1", activitysmithsdk.LiveActivityStreamEndInput{ Title: "Server Health", Subtitle: "prod-web-1", Type: "metrics", Metrics: []activitysmithsdk.ActivityMetric{ activitysmithsdk.Metric("CPU", 7, activitysmithsdk.MetricUnit("%")), activitysmithsdk.Metric("MEM", 38, activitysmithsdk.MetricUnit("%")), }, AutoDismissMinutes: 2, },)Live Activities can include one optional action button.
open_url: open an HTTPS URL.open_url with a shortcuts:// URL: run an Apple Shortcut, for example to open an app.webhook: trigger a backend GET/POST workflow.
activitysmith.LiveActivities.Stream( "prod-web-1", activitysmithsdk.LiveActivityStreamInput{ Title: "Server Health", Subtitle: "prod-web-1", Type: "metrics", Metrics: []activitysmithsdk.ActivityMetric{ activitysmithsdk.Metric("CPU", 76, activitysmithsdk.MetricUnit("%")), activitysmithsdk.Metric("MEM", 52, activitysmithsdk.MetricUnit("%")), }, Action: &activitysmithsdk.LiveActivityActionInput{ Title: "Dashboard", Type: "open_url", URL: "https://ops.example.com/servers/prod-web-1", }, },)activitysmith.LiveActivities.Stream( "deploy-payments-api", activitysmithsdk.LiveActivityStreamInput{ Title: "Deploying payments-api", Subtitle: "Running database migrations", Type: "segmented_progress", NumberOfSteps: 5, CurrentStep: 3, Action: &activitysmithsdk.LiveActivityActionInput{ Title: "Chat with Jarvis", Type: "open_url", URL: "shortcuts://run-shortcut?name=Jarvis", }, },)activitysmith.LiveActivities.Stream( "search-reindex", activitysmithsdk.LiveActivityStreamInput{ Title: "Reindexing product search", Subtitle: "Shard 7 of 12", Type: "segmented_progress", NumberOfSteps: 12, CurrentStep: 7, Action: &activitysmithsdk.LiveActivityActionInput{ Title: "Pause Reindex", Type: "webhook", URL: "https://ops.example.com/hooks/search/reindex/pause", Method: "POST", Body: map[string]interface{}{ "job_id": "reindex-2026-03-19", "requested_by": "activitysmith-go", }, }, },)Add more context to Live Activities with icons and badges.
Supported Live Activity types: stats, metrics, progress, segmented_progress, and alert.
activitysmith.LiveActivities.Stream( "prod-web-1", activitysmithsdk.LiveActivityStreamInput{ Title: "Server Health", Subtitle: "prod-web-1", Type: "metrics", Icon: activitysmithsdk.AlertIcon("server.rack", "blue"), Metrics: []activitysmithsdk.ActivityMetric{ activitysmithsdk.Metric("CPU", 18, activitysmithsdk.MetricUnit("%")), activitysmithsdk.Metric("MEM", 42, activitysmithsdk.MetricUnit("%")), }, },)The icon.symbol value is an Apple SF Symbol name. Browse the catalog with one of these tools:
Badges are supported by alert, progress, and segmented_progress Live Activities.

activitysmith.LiveActivities.Stream( "nightly-database-backup", activitysmithsdk.LiveActivityStreamInput{ Title: "Nightly Database Backup", Subtitle: "verify restore", Type: "progress", Badge: activitysmithsdk.AlertBadge("S3", "cyan"), Percentage: 62, },)Choose from these colors for the Live Activity accent, including progress bars and action buttons, or apply them to an individual icon or badge:

ActivitySmith lets you display any value on your Lock Screen with widgets - SaaS metrics, revenue, number of users, uptime, or anything else you want to track. Create a metric in the web app, then update the metric value using our API, add a widget to your lock screen and it will fetch the latest update automatically.

activitysmith.Metrics.Update("deploy.success_rate", 99.9)String metric values work too.
activitysmith.Metrics.Update("prod.status", "healthy")Keep your team aligned with immediate event delivery across incidents, business signals, and automation outcomes.
Connect ActivitySmith to automation and delivery platforms, then route runtime events to Push Notifications and Live Activities on your iOS devices.
By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith

By ActivitySmith
By ActivitySmith
By ActivitySmith

By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith
By ActivitySmith