GET
/
crm
/
v3
/
imports
/
{importId}
/
errors
cURL
curl --request GET \
  --url https://api.hubapi.com/crm/v3/imports/{importId}/errors \
  --header 'Authorization: Bearer <token>'
{
  "paging": {
    "next": {
      "link": "",
      "after": ""
    }
  },
  "results": [
    {
      "createdAt": 123,
      "extraContext": "<string>",
      "objectTypeId": "<string>",
      "errorType": "INCORRECT_NUMBER_OF_COLUMNS",
      "invalidPropertyValue": {
        "sourceId": "",
        "selectedByUser": false,
        "sourceLabel": "",
        "source": "",
        "updatedByUserId": 123,
        "persistenceTimestamp": 123,
        "sourceMetadata": "",
        "dataSensitivity": "",
        "sourceVid": "",
        "unit": "",
        "requestId": "",
        "isEncrypted": false,
        "name": "",
        "useTimestampAsPersistenceTimestamp": true,
        "value": "",
        "selectedByUserTimestamp": 123,
        "timestamp": 123,
        "isLargeValue": true
      },
      "errorMessage": "<string>",
      "knownColumnNumber": 123,
      "invalidValueToDisplay": "<string>",
      "id": "<string>",
      "sourceData": {
        "rowData": [
          "<string>"
        ],
        "containsEncryptedProperties": true,
        "lineNumber": 123,
        "pageName": "<string>",
        "fileId": 123
      },
      "objectType": "CONTACT",
      "invalidValue": "<string>"
    }
  ]
}
Productos compatibles
Se requiere uno de los siguientes productos o productos de ediciones superiores.
Marketing HubMarketing HubGratuito
Sales HubSales HubGratuito
Service HubService HubGratuito
Content HubContent HubGratuito

Ámbitos Requeridos

Esta API requiere uno de los siguientes ámbitos:
  • crm.import

Authorizations

Authorization
string
header
required

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

Path Parameters

importId
integer
required

Query Parameters

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.

limit
integer

El número máximo de resultados que se mostrarán por página.

includeErrorMessage
boolean

Establecer en True (Verdadero) para recibir un mensaje que explica el error.

includeRowData
boolean

Establecer en True (Verdadero) para recibir los valores de los datos de la fila que contiene el error.

Response

200
application/json

successful operation

The response is of type object.