Zum Hauptinhalt springen
GET
/
crm
/
v3
/
imports
/
有効なインポートを取得
curl --request GET \
  --url https://api.hubapi.com/crm/v3/imports/ \
  --header 'private-app: <api-key>'
{
  "paging": {
    "next": {
      "link": "<string>",
      "after": "<string>"
    },
    "prev": {
      "before": "<string>",
      "link": "<string>"
    }
  },
  "results": [
    {
      "importTemplate": {
        "templateType": "admin_defined",
        "templateId": 123
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "metadata": {
        "counters": {},
        "fileIds": [
          "<string>"
        ],
        "objectLists": [
          {
            "listId": "<string>",
            "objectType": "<string>"
          }
        ]
      },
      "importRequestJson": {},
      "importSource": "API",
      "importName": "<string>",
      "state": "STARTED",
      "id": "<string>",
      "optOutImport": true,
      "mappedObjectTypeIds": [
        "<string>"
      ],
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}
次のいずれかの製品またはそれ以上が必要です。
Marketing HubMarketing Hub -無料ツール
Sales HubSales Hub -無料ツール
Service HubService Hub -無料ツール
Content HubContent Hub -無料ツール
この API には、次のいずれかのスコープが必要です。
crm.import

Authorizations

private-app
string
header
required

Query Parameters

after
string

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

before
string
limit
integer

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

Response

successful operation

results
object[]
required
paging
object