Googleapis Discovery
Googleapis Discovery is a connector for the Google APIs Discovery Service, used to retrieve machine-readable descriptions of Google APIs.
- Base URL:
https://www.googleapis.com/discovery/v1 - Auth:
bearer(pass your key via theapiKeyinput)
Operations
discovery_apis_list— GET /apis — Retrieve the list of APIs supported at this endpoint.discovery_apis_getrest— GET /apis/{api}/{version}/rest — Retrieve the description of a particular version of an api.
Inputs
apiKey— your googleapis-discovery API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: discovery_apis_list
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: discovery_apis_list, discovery_apis_getrest |
api |
string | no | — | Path parameter api (required by some operations). |
version |
string | no | — | Path parameter version (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |