curl --request PUT \
--url https://api.hubapi.com/content/api/v2/pages/{page_id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"slug": "<string>",
"widgets": {}
}
'{}Updates a page in the database. If not all top level fields are included in the body, we will only update the included fields.
curl --request PUT \
--url https://api.hubapi.com/content/api/v2/pages/{page_id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"slug": "<string>",
"widgets": {}
}
'{}Was this page helpful?