Box Developerドキュメント
最新バージョン

Remove Box Hub collaboration

delete
https://api.box.com/2.0
/hub_collaborations/:hub_collaboration_id

Deletes a single Box Hub collaboration.

リクエスト

bearer [ACCESS_TOKEN]
application/json

リクエストヘッダー

stringヘッダー内必須

Version header.

次の値に固定: 2025.0

パスパラメータ

stringパス内必須
1234

HubコラボレーションのID。

レスポンス

none

A blank response is returned if the Box Hub collaboration was successfully deleted.

Returns an error if the Box Hub collaboration could not be found, or the authenticated user does not have access to the Box Hub collaboration.

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

delete
Remove Box Hub collaboration
このドキュメント内で一部のAPIを試せるようになりました。
ログイン

リクエストの例

TypeScript Gen
await client.hubCollaborations.deleteHubCollaborationByIdV2025R0(
  createdCollaboration.id,
);
Python Gen
client.hub_collaborations.delete_hub_collaboration_by_id_v2025_r0(
    created_collaboration.id
)
.NET Gen
await client.HubCollaborations.DeleteHubCollaborationByIdV2025R0Async(hubCollaborationId: createdCollaboration.Id);