PendiumDocs

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

ParameterTypeRequiredDescription
agentPageIdstringYesThe page to edit (from list_agent_pages).
titlestring (1–200)NoNew page title / hero headline. Omit to keep current.
slugstring (1–200)NoNew 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.
metaDescriptionstring (≤320)NoNew 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.

On this page