Saltar al contenido principal
POST
/
cms
/
v3
/
blogs
/
tags
/
batch
/
read
Recuperar un lote de etiquetas de blog
curl --request POST \
  --url https://api.hubapi.com/cms/v3/blogs/tags/batch/read \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "inputs": [
    "<string>"
  ]
}
'
{
  "completedAt": "2023-11-07T05:31:56Z",
  "results": [
    {
      "created": "2023-11-07T05:31:56Z",
      "deletedAt": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "language": "af",
      "name": "<string>",
      "translatedFromId": 123,
      "updated": "2023-11-07T05:31:56Z"
    }
  ],
  "startedAt": "2023-11-07T05:31:56Z",
  "status": "CANCELED",
  "links": {},
  "requestedAt": "2023-11-07T05:31:56Z"
}

Productos compatibles

Se requiere uno de los siguientes productos o productos de ediciones superiores.
Marketing HubMarketing Hub -Pro
Sales HubSales Hub -Gratuito
Service HubService Hub -Gratuito
Content HubContent Hub -Starter

Autorizaciones

Authorization
string
header
requerido

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

Parámetros de consulta

archived
boolean

Especifica si se devuelven las etiquetas de blog eliminadas. La opción predeterminada es falso.

Cuerpo

application/json

The JSON array of Blog Tag ids.

Wrapper for providing an array of strings as inputs.

inputs
string[]
requerido

Cadenas que se introducirán.

Respuesta

successful operation

Response object for batch operations on blog tags.

completedAt
string<date-time>
requerido

Hora de finalización de la operación por lotes.

results
object[]
requerido

Resultados de la operación por lotes.

startedAt
string<date-time>
requerido

Hora de inicio de la operación por lotes.

status
enum<string>
requerido

Estado de la operación por lotes.

Opciones disponibles:
CANCELED,
COMPLETE,
PENDING,
PROCESSING

Enlaces asociados a la operación por lotes.

requestedAt
string<date-time>

Hora de la solicitud de operación por lotes.

Last modified on January 26, 2026