Box Developerドキュメント

IDを指定してコレクションを取得

get
https://api.box.com/2.0
/collections/:collection_id

IDでコレクションを取得します。

リクエスト

bearer [ACCESS_TOKEN]
application/json

パスパラメータ

stringパス内必須
926489

コレクションのID。

レスポンス

application/jsonCollection

コレクション内の項目の配列を返します。

予期しないクライアントエラー。

get
IDを指定してコレクションを取得
このドキュメント内で一部のAPIを試せるようになりました。
ログイン

リクエストの例

TypeScript Gen
await client.collections.getCollectionById(collections.entries![0].id!);
Python Gen
client.collections.get_collection_by_id(collections.entries[0].id)
.NET Gen
await client.Collections.GetCollectionByIdAsync(collectionId: NullableUtils.Unwrap(NullableUtils.Unwrap(collections.Entries)[0].Id));

レスポンスの例

{
  "id": "11446498",
  "type": "collection",
  "collection_type": "favorites",
  "name": "Favorites"
}