remove_blocked_url¶
Unblock a previously blocked page or directory.
Parameters¶
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
site_url |
string | Yes | -- | The URL of the site |
url |
string | Yes | -- | The page or directory URL to unblock |
entity_type |
string | No | Page |
Page or Directory -- should match the original block |
request_type |
string | No | FullRemoval |
CacheOnly or FullRemoval -- should match the original block |
Response¶
{
"siteUrl": "https://www.example.com/",
"url": "https://www.example.com/staging/",
"entityType": "Directory",
"requestType": "FullRemoval",
"success": true,
"requestedAt": "2026-02-21T19:00:00Z"
}
Example Prompts¶
"Unblock https://www.example.com/staging/ on Bing."
Notes¶
- Use
get_blocked_urlsfirst to confirm the exactentity_typeandrequest_typethe block was originally created with. - For
Directoryblocks, use the exact URLget_blocked_urlsreports (Bing normalizes directory URLs with a trailing slash on storage) -- passing the original un-normalized URL will report success but silently not match the stored block.