DRAGOPS
DRAGOPS
DocumentationIntegrationsIntegrations

Integrations

Connect DRAGOPS to external services with integration packs or manual HTTP wiring.

DRAGOPS provides two ways to integrate with external services. Integration packs offer pre-built nodes that handle authentication, request formatting, and response parsing automatically. Manual integrations use HTTP Request and JSON nodes for full control over every detail. Both approaches produce the same result at execution time — pack nodes generate the same HTTP calls you would wire by hand.

How integrations work

In DRAGOPS, every integration is a pattern. Whether you use a pre-built pack node or wire HTTP Request nodes manually, the execution engine makes standard HTTP calls to external APIs. This design gives you four advantages:

  • Full visibility. Open any integration and see exactly what API calls it makes, what headers it sends, and how it handles errors.
  • Full control. Modify any part of the integration to fit your exact use case. Add custom headers, change retry logic, transform payloads differently, or combine multiple API calls into a single pattern.
  • No update lag. When a service adds a new API endpoint, you can use it immediately. You do not need to wait for an update.
  • Pre-built convenience. For services with an integration pack, you get ready-to-use nodes that eliminate repetitive wiring. One node replaces five.

Integration packs

Integration packs provide pre-built nodes for popular services. Each pack bundles authentication configuration, typed action nodes, and response mapping into a single portable package. You configure a connection for the service, then drag pack nodes onto the canvas.

For example, the VirusTotal pack provides a Get IP Report node. Instead of wiring Get Secret + Set Property + Format URL + HTTP Request + Get Property, you place one node, wire an IP address to its input, and read the report from its output.

To learn how packs work under the hood, see Integration packs in the concepts section.

Choose your approach

If you need to...Use
Call an API that has a pack availableIntegration pack nodes
Full control over headers, body, and response handlingManual HTTP wiring (see below)
Integrate with an API that has no packManual HTTP wiring, or author a pack
Receive inbound events from a serviceOn Webhook trigger (works with both approaches)

Manual integration building blocks

For services without a pack, or when you need full control, build integrations manually with these core nodes:

NodeRole
On WebhookReceives inbound HTTP requests from external services
HTTP RequestMakes outbound HTTP calls to external APIs
JSON ParseConverts a JSON string (like an API response body) into an object
JSON StringifyConverts an object into a JSON string (for request bodies)
Set PropertyBuilds objects — headers, request bodies, payloads
Get PropertyExtracts values from objects — response fields, webhook data
FormatBuilds strings from templates — URLs, messages, Bearer tokens
BranchRoutes execution based on conditions — status codes, event types
Respond To WebhookReturns custom HTTP responses to inbound callers
LogRecords data to the execution console for debugging

With these nodes, you can integrate with any service that exposes an HTTP API.

Build a manual integration

The general approach for any manual integration follows two patterns: sending data out and receiving data in.

Sending data to an external service

  1. Build the request headers using Set Property nodes (authentication, content type).
  2. Build the request body using Set Property and JSON Stringify nodes.
  3. Use HTTP Request to call the service's API endpoint.
  4. Parse the response with JSON Parse and extract the fields you need with Get Property.
  5. Use Branch to check the status code and handle success and failure paths.

Receiving events from an external service

  1. Add an On Webhook trigger to your pattern. DRAGOPS assigns a stable webhook URL immediately.
  2. Register that URL in the external service's webhook settings.
  3. Use Get Property to extract fields from the incoming payload.
  4. Process the event and take action — call APIs, send messages, update data.
  5. Optionally use Respond To Webhook to return a custom response.

Storing credentials safely

Use connections to store API keys, OAuth tokens, and other credentials securely. Connections encrypt credentials at rest and inject them automatically when your pattern executes. See Connect external services for setup instructions.

For services without a built-in connection type, use secrets to store API keys and reference them in your patterns.

Service-specific guides

These guides walk through complete integration examples for popular services:

On this page