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>"
    }
  ]
}
Supported products
Requires one of the following products or higher.
Marketing HubMarketing HubFree
Sales HubSales HubFree
Service HubService HubFree
Content HubContent HubFree

Required Scopes

This API requires one of the following scopes:
  • 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

The paging cursor token of the last successfully read resource will be returned as the paging.next.after JSON property of a paged response containing more results.

limit
integer

The maximum number of results to display per page.

includeErrorMessage
boolean

Set to True to receive a message explaining the error.

includeRowData
boolean

Set to True to receive the data values for the errored row.

Response

200
application/json

successful operation

The response is of type object.