Googleapis Siteverification
Googleapis Siteverification is a generated connector for the Google Site Verification API, which verifies ownership of websites and domains for Google services.
- Base URL:
https://www.googleapis.com/siteVerification/v1 - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.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
siteverification_webresource_list— GET /webResource — Get the list of your verified websites and domains.siteverification_webresource_get— GET /webResource/{id} — Get the most current data for a website or domain.siteverification_webresource_gettoken— POST /token — Get a verification token for placing on a website or domain.siteverification_webresource_insert— POST /webResource — Attempt verification of a website or domain.siteverification_webresource_update— PUT /webResource/{id} — Modify the list of owners for your website or domain.siteverification_webresource_delete— DELETE /webResource/{id} — Relinquish ownership of a website or domain.
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— 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: siteverification_webresource_list
# (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.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: siteverification_webresource_list, siteverification_webresource_get, siteverification_webresource_gettoken, siteverification_webresource_insert, siteverification_webresource_update, siteverification_webresource_delete |
id |
string | no | — | Path parameter id (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |
body |
string | no | — | Request body as a JSON object string (for create/update operations). |