Download Reportworq
⬇ Guide PDF

The automation API#

Reportworq exposes a small HTTP API that lets an external process trigger and monitor job execution without using the web UI or the built-in scheduler. It is the only supported way to drive a job from outside Reportworq, and it is the substrate under the pre-built Turbo Integrator, Workato, and Task Scheduler integrations.

This page is written for administrators who enable the API and mint tokens, and for integration users who build the automated caller. It explains the two delivery models and their key models. To make actual calls, see Run a job by API.

When to use it. Reach for the API when automation cannot be expressed as a preset schedule, or must be triggered by another system's event, for example regenerating a reporting pack the moment a nightly data load finishes. For time-based runs, prefer the native scheduler. The API is positioned as a complement to the scheduler, not a replacement for it.

Two ways to reach the same commands#

The same command set is delivered two ways from the same server.

Local (Network) REST API Cloud API
Where the caller runs On the LAN, directly against the server Anywhere on the public internet
Endpoint http(s)://{server}:{port}/api/v1/{command} (default port 8600) Relayed through the Azure-hosted CloudHub proxy
Credential A per-server, per-workspace access token A global Cloud Connector token, one per server
Workspace selection Implicit, the token maps to its workspace Explicit, a ?workspace={name} querystring
Network exposure Direct LAN reach to the server Outbound 443 only, no inbound exposure

Both are versioned under /api/v1/. Which one you choose depends on where the caller lives: on the same network as the server (Local), or out on the internet (Cloud).

The two key models are opposite (the common bug)#

This is the fact to internalize before wiring anything, because mixing the two mental models is the most common integration mistake.

The ?workspace= querystring is required once more than one workspace exists, and a single-workspace instance may omit it (the relay defaults to the sole workspace). On a multi-workspace instance, omitting it does not default, the call is rejected with a "missing or unknown workspace" message.

Cloud needs only outbound 443#

The Cloud API opens no inbound port. The server dials out to CloudHub over 443 and CloudHub forwards requests down that connection, so the Reportworq server itself never needs to be reachable from the internet. This is what makes the Cloud API attractive to security teams: automation from a SaaS caller without opening the firewall. Cloud calls are subject to short Azure maintenance windows, so a robust caller retries on a transient outage.

Enabling and gating#

Tokens should be shared only with the developers who build the callers.

What the commands cover#

The API is a small, five-command surface, and two older commands are retired:

The detail of each command, and how to filter a single run to a specific output type and destination, is in Run a job by API.

Going deeper. To run and monitor a job, and to send one job's output as a PDF by email while another caller gets the same job as a PowerPoint by Slack, see Run a job by API. To launch jobs from a planning system, an iPaaS, or the OS scheduler, see Turbo Integrator, Workato, and Task Scheduler.

Feedback on this page

Comments, questions, requests, or something missing or unclear? Email us - the page you are on is filled in for you.

Email feedback on this page

Or write to support@reportworq.com directly.