Passer au contenu principal
POST
/
cms
/
v3
/
blogs
/
authors
/
batch
/
read
Récupérer un lot d'auteurs de blog
curl --request POST \
  --url https://api.hubapi.com/cms/v3/blogs/authors/batch/read \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "inputs": [
    "<string>"
  ]
}
'
{
  "completedAt": "2023-11-07T05:31:56Z",
  "results": [
    {
      "avatar": "<string>",
      "bio": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "deletedAt": "2023-11-07T05:31:56Z",
      "displayName": "<string>",
      "email": "<string>",
      "facebook": "<string>",
      "fullName": "<string>",
      "id": "<string>",
      "language": "af",
      "linkedin": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "translatedFromId": 123,
      "twitter": "<string>",
      "updated": "2023-11-07T05:31:56Z",
      "website": "<string>"
    }
  ],
  "startedAt": "2023-11-07T05:31:56Z",
  "status": "CANCELED",
  "links": {},
  "requestedAt": "2023-11-07T05:31:56Z"
}

Produits pris en charge

Exige l'un des produits suivants ou un produit supérieur.
Marketing HubMarketing Hub -Gratuit
Sales HubSales Hub -Gratuit
Service HubService Hub -Gratuit
Content HubContent Hub -Gratuit

Autorisations

Authorization
string
header
requis

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

Paramètres de requête

archived
boolean

Précise si les auteurs de blog supprimés doivent être renvoyés. Par défaut, faux.

Corps

application/json

The JSON array of Blog Author ids.

Wrapper for providing an array of strings as inputs.

inputs
string[]
requis

Chaînes à saisir.

Réponse

successful operation

Response object for batch operations on blog authors.

completedAt
string<date-time>
requis

Heure de fin de l'opération par lots.

results
object[]
requis

Résultats de l'opération par lot.

startedAt
string<date-time>
requis

Heure de début de l'opération par lot.

status
enum<string>
requis

Statut de l'opération par lot.

Options disponibles:
CANCELED,
COMPLETE,
PENDING,
PROCESSING

Liens associés à l'opération par lot.

requestedAt
string<date-time>

Heure de la demande d'opération par lot.

Last modified on December 9, 2025