Zum Hauptinhalt springen
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

successful operation

results
object[]
required
paging
object
I