Supported Integrations
Glow connects the systems an MSP uses through pre-built app connections, HTTP requests, and inbound webhooks. Choose the method each client system supports, then keep its credentials inside that client’s workspace.
Build a reusable workflow in your own workspace, then copy it to one client at a time after reviewing its preflight.
Connection Methods
Glow communicates with client systems through three connection methods:
- Pre-built apps (Apps and Integrations): Use a visual action or trigger where the required service and operation are available in the directory.
- REST APIs (HTTP Request): Call a service that exposes a compatible REST endpoint, using its documented authentication method.
- Inbound webhooks (Webhook Trigger): Receive real-time telemetry and alerts, with signature verification where the sender supports it.
| Category | Examples in the Glow ecosystem | Ways to connect | Typical authentication | Example workflows |
|---|---|---|---|---|
| PSA & Service Desk | ConnectWise PSA, Autotask, ServiceNow, Zendesk, Jira | Pre-built app or HTTP Request | OAuth 2.0, API key or secret | Dispatch tickets, sync configuration items, update agreements and log technician time |
| Identity & IAM | Microsoft 365, Entra ID, Google Workspace, Okta | Pre-built app or HTTP Request | OAuth 2.0 or admin consent | Provision and offboard users, assign licences, update groups and revoke sessions |
| RMM & Endpoint Mgmt | NinjaOne, Datto RMM, ConnectWise Automate | Pre-built app, HTTP Request or Webhook | OAuth 2.0, API key or secret | Receive device alerts, fetch hardware details and start remediation |
| Documentation & CMDB | IT Glue, Hudu, ScalePad, Liongard | Pre-built app or HTTP Request | API key or bearer token | Create records, track warranty dates and sync contacts |
| Cybersecurity & EDR | CrowdStrike Falcon, SentinelOne, Huntress, Duo | Pre-built app, HTTP Request or Webhook | OAuth 2.0, API key or signature | Receive detections, route forensic indicators and isolate endpoints where the selected action supports it |
| CSP & Cloud Billing | QuickBooks, Xero, Stripe, DocuSign, Pax8 | Pre-built app or HTTP Request | OAuth 2.0 or API key | Compare subscriptions with agreements, route billing exceptions and prepare reconciliation |
| Alerts & Team Comms | Microsoft Teams, Slack, PagerDuty, Twilio | Pre-built app or HTTP Request | OAuth 2.0 or API key | Send notifications, route on-call escalations and dispatch messages |
How Connections Work
The available method depends on the service and operation. Check the Integrations Directory first, then use HTTP Request or a webhook when that is the better fit.
1. Pre-Built App Connections
Where the app and operation are available in the directory, configure them from the App drawer:
- Open your workflow canvas and click Apps in the dock.
- Select your application from the catalogue and click Connect.
- Authorize the account. Glow securely stores credentials inside the active workspace and handles token lifecycles and background refreshes automatically.
- Pick your pre-built action or trigger from the drawer and configure inputs using dynamic variable tags.
2. Custom PSA & RMM REST APIs (HTTP Request)
For specialized MSP platforms and on-premise tools with a documented REST API:
- Add an HTTP Request step to your canvas or paste a cURL snippet to generate it instantly.
- Configure your endpoint URL using workspace variables:
https://{{ $var.PSA_INSTANCE }}/api/v1/tickets. - Provide authentication in headers:
Authorization: Bearer {{ $secret.PSA_API_KEY }}. - Response payloads are automatically parsed into structured variables accessible in subsequent steps.
3. Real-Time Telemetry & Threat Feeds (Inbound Webhooks)
For instant alert ingestion (NinjaOne monitoring alerts, SentinelOne threat detections, Huntress incident feeds):
- Add a Webhook trigger step to your workflow canvas.
- Switch the workflow to Live mode to generate your unique, per-workflow webhook URL.
- Configure your RMM or EDR to dispatch alert notifications to this webhook URL.
- Provide a secret key to enforce cryptographic HMAC signature verification on every inbound payload.
Workspace Credential Isolation
Each client’s credentials belong in that client’s workspace:
- Separate client workspaces: Secrets, API keys, and app connections added in Client A’s workspace are not available to workflows in Client B’s workspace.
- Client-owned authentication: A client can connect its own service accounts without giving you the underlying credential value.
- Reviewed workflow copies: Build a reusable workflow in your own workspace, then copy it to one client through Pushing Workflows to Clients. The preflight identifies connections and values the client still needs to provide.
Explore Integrations & Blueprints
Search commonly used MSP platforms by category, connection method, and authentication type.
App DirectoryExample workflow patterns for onboarding, billing reconciliation, security alerts, and routine operations.
Automation BlueprintsWhat’s Next?
👉 App Directory → — find the connection method available for a specific MSP platform.
Sideways from here: How Multi-Tenancy Works explains what stays inside each client workspace.