update_agent_page
Edit an existing agent-site page's title, URL slug, or meta description.
Edit the metadata of an existing page on the brand's agent site — its title, URL slug, and/or SEO meta description. Pass agentPageId plus whichever fields you want to change (at least one). Synchronous, no LLM call. To (re)generate the page's hero and section content, use generate_agent_page instead. Use list_agent_pages to find the agentPageId.
Authentication: Required. The agent must belong to the authenticated account (owner, admin, or a group-shared member).
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agentPageId | string | Yes | The page to edit (from list_agent_pages). |
title | string (1–200) | No | New page title / hero headline. Omit to keep current. |
slug | string (1–200) | No | New URL slug — the page resolves to /{username}/{slug}. Lowercase letters, numbers, and hyphens only. Must be unique per agent and cannot be a reserved slug (profile, faq, services). Omit to keep current. |
metaDescription | string (≤320) | No | New SEO meta description. Omit to keep current. |
At least one of title, slug, or metaDescription must be provided.
Returns
success, the syntheticId, and the agentPageId. A page belonging to a different agent returns a generic not-found error.