Provided free and as is, without warranty of any kind — including merchantability, fitness for a particular purpose, and the accuracy or completeness of any result. See the licence. You are responsible for checking what this produces before relying on it.
developer-devops
Runscope
Runscope is an API testing and monitoring service for checking whether web APIs are working correctly.
Base URL: https://api.runscope.com
Auth: OAuth 2.0 (user-delegated) — attach an InTouch oauth credential. Mint one with itcli.py /oauth <provider> (device-code) or /google-auth (Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
get_account — GET /account — Account Resource
get_buckets — GET /buckets — Returns a list of buckets.
get_buckets_bucketkey — GET /buckets/{bucketKey} — Returns a single bucket resource.
get_buckets_bucketkey_environments — GET /buckets/{bucketKey}/environments — Returns list of shared environments for a specified bucket.
get_buckets_bucketkey_errors — GET /buckets/{bucketKey}/errors — Retrieve a list of error messages in a bucket
get_buckets_bucketkey_messages — GET /buckets/{bucketKey}/messages — Retrieve a list of messages in a bucket
Inputs
a linked oauth credential (no key inputs) — the server injects a fresh Authorization: Bearer from it
operation — one of the operations above
path parameters when an operation's path contains {...}
query — optional JSON object of query params
body — JSON object for create/update ops
Example
operation: get_account
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
error
operation
result
status
Input Properties
Every property this tool accepts, from its own tool.iml.
Property
Type
Required
Default
Description
operation
string
yes
—
One of: get_account, get_buckets, get_buckets_bucketkey, get_buckets_bucketkey_environments, get_buckets_bucketkey_errors, get_buckets_bucketkey_messages
bucketKey
string
no
—
Path parameter bucketKey (required by some operations).
query
string
no
—
Optional query params as a JSON object string, e.g. {"limit": 10}.