enable_disable_query_parameter¶
Enable or disable an existing URL normalization query parameter for a site, without removing it from the list.
Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
site_url |
string | Yes | The URL of the site |
query_parameter |
string | Yes | The query parameter name to update |
is_enabled |
boolean | Yes | true to enable, false to disable |
Response¶
{
"siteUrl": "https://www.example.com/",
"queryParameter": "utm_campaign",
"isEnabled": false,
"success": true,
"requestedAt": "2026-02-21T19:00:00Z"
}
Example Prompts¶
"Disable the utm_campaign query parameter on my site without removing it."
Notes¶
- Unlike most other optional parameters in this server,
is_enabledhas no default -- it must always be supplied explicitly since there's no sensible assumption for whether you mean to enable or disable. - Use
get_query_parametersto see current enabled/disabled state. - Use
remove_query_parameterinstead if you want the entry gone entirely rather than just disabled.