Zum Hauptinhalt springen
GET
/
crm
/
v3
/
imports
/
{importId}
/
errors
特定のインポートのエラーを取得
curl --request GET \
  --url https://api.hubapi.com/crm/v3/imports/{importId}/errors \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "createdAt": 123,
      "errorType": "AMBIGUOUS_ENUMERATION_OPTION",
      "id": "<string>",
      "sourceData": {
        "containsEncryptedProperties": true,
        "fileId": 123,
        "lineNumber": 123,
        "rowData": [
          "<string>"
        ],
        "pageName": "<string>"
      },
      "errorMessage": "<string>",
      "extraContext": "<string>",
      "invalidPropertyValue": {
        "dataSensitivity": "high",
        "isEncrypted": true,
        "isLargeValue": true,
        "name": "<string>",
        "persistenceTimestamp": 123,
        "requestId": "<string>",
        "selectedByUser": true,
        "selectedByUserTimestamp": 123,
        "source": "ACADEMY",
        "sourceId": "<string>",
        "sourceLabel": "<string>",
        "sourceMetadata": "<string>",
        "sourceVid": [
          123
        ],
        "timestamp": 123,
        "unit": "<string>",
        "updatedByUserId": 123,
        "useTimestampAsPersistenceTimestamp": true,
        "value": "<string>"
      },
      "invalidValue": "<string>",
      "invalidValueToDisplay": "<string>",
      "knownColumnNumber": 123,
      "objectType": "ABANDONED_CART",
      "objectTypeId": "<string>"
    }
  ],
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<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<int64>
required

インポートの固有ID。

Query Parameters

after
string

最後に正常に読み取られたリソースのページ操作カーソルトークンは、より多くの結果を含むページ付きレスポンスのpaging.next.after JSONプロパティーとして返されます。

includeErrorMessage
boolean

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

includeRowData
boolean

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

limit
integer<int32>

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

Response

successful operation

results
object[]
required
paging
object