google_ads_rename_connection

Rename Google Connection

Google

Description

Rename the display name of an owned Google connection. The OAuth grant and underlying account are unaffected — this only changes the human-readable label. You must be the owner.

Idempotent

Usage

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "google_ads_rename_connection",
    "arguments": {
      "connection_id": "00000000-0000-0000-0000-000000000001",
      "display_name": "Acme — Production",
      "reason": "User wanted a clearer label for this Google connection"
    }
  }
}

Parameters

NameTypeRequiredDescription
connection_id string Required UUID of the connection to mark as the actor's default Google connection.
reason string Required Why this tool call is neededminLength: 1, maxLength: 500

Examples

Rename

{
  "connection_id": "00000000-0000-0000-0000-000000000001",
  "display_name": "Acme — Production",
  "reason": "User wanted a clearer label for this Google connection"
}

hopkin google rename-connection --connection-id 00000000-0000-0000-0000-000000000001 --display-name Acme — Production