Box Developerドキュメント
ベータ

Remove hub collaboration

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

Deletes a single hub collaboration.

リクエスト

bearer [ACCESS_TOKEN]
application/json

リクエストヘッダー

stringヘッダー内必須

Version header.

次の値に固定: 2025.0

パスパラメータ

stringパス内必須
1234

The ID of the hub collaboration.

レスポンス

none

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

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

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

delete
Remove 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);