Zum Hauptinhalt springen
GET
/
files
/
v3
/
folders
/
{folderPath}
パスでフォルダーを取得
curl --request GET \
  --url https://api.hubapi.com/files/v3/folders/{folderPath} \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "2023-11-07T05:31:56Z",
  "archivedAt": "2023-11-07T05:31:56Z",
  "path": "<string>",
  "archived": true,
  "parentFolderId": "<string>",
  "name": "<string>",
  "id": "<string>",
  "updatedAt": "2023-11-07T05:31:56Z"
}
次のいずれかの製品またはそれ以上が必要です。
Marketing HubMarketing Hub -無料ツール
Sales HubSales Hub -無料ツール
Service HubService Hub -無料ツール
Content HubContent Hub -Starter
この API には、次のいずれかのスコープが必要です。
files
files.ui_hidden.read

Authorizations

Authorization
string
header
required

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

Path Parameters

folderPath
string
required

目的のフォルダーのパス。

Query Parameters

properties
string[]

返されるフォルダーで設定するプロパティー。

Response

successful operation

createdAt
string<date-time>
required

フォルダー作成のタイムスタンプ。

archived
boolean
required

フォルダーが削除されたかどうかを示します。

id
string
required

フォルダーのID。

updatedAt
string<date-time>
required

フォルダーに対する最新の更新のタイムスタンプ。

archivedAt
string<date-time>

フォルダー削除のタイムスタンプ。

path
string

ファイルマネージャーにおけるフォルダーのパス。

parentFolderId
string

親フォルダーのID。

name
string

フォルダーの名前。

I