メインコンテンツへスキップ
GET
/
crm
/
v3
/
exports
/
export
/
async
/
tasks
/
{taskId}
/
status
ファイルをダウンロードするためのURLを含めてエクスポートのステータスを取得
curl --request GET \
  --url https://api.hubapi.com/crm/v3/exports/export/async/tasks/{taskId}/status \
  --header 'Authorization: Bearer <token>'
{
  "completedAt": "2023-11-07T05:31:56Z",
  "startedAt": "2023-11-07T05:31:56Z",
  "status": "CANCELED",
  "errors": [
    {
      "category": "<string>",
      "context": {},
      "errors": [
        {
          "message": "<string>",
          "code": "<string>",
          "context": "{missingScopes=[scope1, scope2]}",
          "in": "<string>",
          "subCategory": "<string>"
        }
      ],
      "links": {},
      "message": "<string>",
      "status": "<string>",
      "id": "<string>",
      "subCategory": {}
    }
  ],
  "links": {},
  "numErrors": 123,
  "requestedAt": "2023-11-07T05:31:56Z",
  "result": "<string>"
}
次のいずれかの製品またはそれ以上が必要です。
Marketing HubMarketing Hub -無料ツール
Sales HubSales Hub -無料ツール
Service HubService Hub -無料ツール
Content HubContent Hub -無料ツール

承認

Authorization
string
header
必須

The access token received from the authorization server in the OAuth 2.0 flow.

パスパラメータ

taskId
integer<int64>
必須

エクスポートの固有ID。

レスポンス

successful operation

completedAt
string<date-time>
必須

エクスポートが完了した時点のタイムスタンプ(ISO 8601形式)。

startedAt
string<date-time>
必須

エクスポート処理が開始された時点のタイムスタンプ(ISO 8601形式)。

status
enum<string>
必須

エクスポートの現在のステータス(PENDING、PROCESSING、COMPLETE、CANCELEDを取り得る)。

利用可能なオプション:
CANCELED,
COMPLETE,
PENDING,
PROCESSING
errors
object[]

エクスポートに関連付けられた関連リンクのコレクション。

numErrors
integer<int32>

エクスポート処理中に発生したエラーの数。

requestedAt
string<date-time>

エクスポートリクエストが行われた時点のタイムスタンプ(ISO 8601形式)。

result
string

エクスポートステータスがCOMPLETEの場合の結果ファイルURL。

Last modified on December 8, 2025