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>"
    }
  ]
}
サポートされる製品
次のいずれかの製品またはそれ以上が必要です。
Marketing HubMarketing Hub無料ツール
Sales HubSales Hub無料ツール
Service HubService Hub無料ツール
Content HubContent Hub無料ツール

必須スコープ

この API には、次のいずれかのスコープが必要です。
  • 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

前回正常に読み取られたリソースのページ設定カーソルトークンが、その他の結果が含まれるページ設定されたレスポンスの「paging.next.after」JSONプロパティーとして返されます。

limit
integer

ページごとに表示する結果の最大数。

includeErrorMessage
boolean

エラーについて説明するメッセージを受信するにはTrueに設定します。

includeRowData
boolean

エラーがある行のデータ値を受信するにはTrueに設定します。

Response

200
application/json

successful operation

The response is of type object.