Passer au contenu principal
POST
/
crm
/
properties
/
2026-03
/
{objectType}
/
batch
/
read
Lire un lot de propriétés
curl --request POST \
  --url https://api.hubapi.com/crm/properties/2026-03/{objectType}/batch/read \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "archived": true,
  "dataSensitivity": "highly_sensitive",
  "inputs": [
    {
      "name": "<string>"
    }
  ]
}
'
{
  "completedAt": "2023-11-07T05:31:56Z",
  "results": [
    {
      "description": "<string>",
      "fieldType": "<string>",
      "groupName": "<string>",
      "label": "<string>",
      "name": "<string>",
      "options": [
        {
          "hidden": true,
          "label": "<string>",
          "value": "<string>",
          "description": "<string>",
          "displayOrder": 123
        }
      ],
      "type": "<string>",
      "archived": true,
      "archivedAt": "2023-11-07T05:31:56Z",
      "calculated": true,
      "calculationFormula": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "createdUserId": "<string>",
      "currencyPropertyName": "<string>",
      "dataSensitivity": "highly_sensitive",
      "dateDisplayHint": "absolute",
      "displayOrder": 123,
      "externalOptions": true,
      "formField": true,
      "hasUniqueValue": true,
      "hidden": false,
      "hubspotDefined": true,
      "modificationMetadata": {
        "archivable": true,
        "readOnlyDefinition": true,
        "readOnlyValue": true,
        "readOnlyOptions": true
      },
      "numberDisplayHint": "currency",
      "referencedObjectType": "<string>",
      "sensitiveDataCategories": [
        "<string>"
      ],
      "showCurrencySymbol": true,
      "updatedAt": "2023-11-07T05:31:56Z",
      "updatedUserId": "<string>"
    }
  ],
  "startedAt": "2023-11-07T05:31:56Z",
  "status": "CANCELED",
  "links": {},
  "requestedAt": "2023-11-07T05:31:56Z"
}

Supported products

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

objectType
string
requis

Paramètres de requête

locale
string

Corps

application/json
archived
boolean
requis

Spécifie si la propriété est archivée.

dataSensitivity
enum<string>
requis

Indique le niveau de sensibilité des données, tel que « non_sensible », « sensible » ou « hautement_sensible ».

Options disponibles:
highly_sensitive,
non_sensitive,
sensitive
inputs
object[]
requis

Réponse

successful operation

completedAt
string<date-time>
requis

L'horodatage indiquant le moment où l'opération par lots a été terminée.

results
object[]
requis
startedAt
string<date-time>
requis

L'horodatage indiquant le début du traitement de l'opération de lot.

status
enum<string>
requis

Le statut actuel de l'opération par lots, avec les valeurs possibles étant CANCELED, COMPLETE, PENDING ou PROCESSING.

Options disponibles:
CANCELED,
COMPLETE,
PENDING,
PROCESSING

Une collection d'URL renvoyant à de la documentation ou des ressources liées à l'opération de lot.

requestedAt
string<date-time>

L'horodatage indiquant le moment où l'opération par lots a été demandée.

Last modified on April 13, 2026