Saltar al contenido principal
GET
/
cms
/
blog-settings
/
2026-03
/
settings
/
{blogId}
/
revisions
Obtener todas las modificaciones del blog
curl --request GET \
  --url https://api.hubapi.com/cms/blog-settings/2026-03/settings/{blogId}/revisions \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "<string>",
      "object": {
        "absoluteUrl": "<string>",
        "allowComments": true,
        "created": "2023-11-07T05:31:56Z",
        "deletedAt": "2023-11-07T05:31:56Z",
        "description": "<string>",
        "htmlTitle": "<string>",
        "id": "<string>",
        "listingPageId": "<string>",
        "name": "<string>",
        "publicAccessRules": [
          {}
        ],
        "publicAccessRulesEnabled": true,
        "publicTitle": "<string>",
        "slug": "<string>",
        "translatedFromId": "<string>",
        "updated": "2023-11-07T05:31:56Z"
      },
      "updatedAt": "2023-11-07T05:31:56Z",
      "user": {
        "email": "<string>",
        "fullName": "<string>",
        "id": "<string>"
      }
    }
  ],
  "total": 123,
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    },
    "prev": {
      "before": "<string>",
      "link": "<string>"
    }
  }
}

Supported products

Autorizaciones

Authorization
string
header
requerido

The access token received from the authorization server in the OAuth 2.0 flow.

Parámetros de ruta

blogId
string
requerido

El ID del blog.

Parámetros de consulta

after
string

El token del cursor de paginación del último recurso leído con éxito se devolverá como la propiedad JSON paging.next.after de una respuesta paginada que contenga más resultados.

before
string
limit
integer<int32>

El número máximo de resultados que se devolverán. La opción predeterminada es 100.

Respuesta

successful operation

results
object[]
requerido
total
integer<int32>
requerido
paging
object
Última modificación el 13 de abril de 2026