メインコンテンツへスキップ
APIバージョン 2025.0 Box Hubコラボレーションオブジェクトは、特定のロールによって定義される権限を含んだBox Hubへのアクセス権限をユーザーまたはグループに付与します。
id
string
12345678このコラボレーションの一意の識別子。
type
string
hub_collaboration値は常にhub_collaborationになります。次の値に固定: hub_collaboration
acceptance_requirements_status
object
accessible_by
objectobject
アクセス権限が付与されるユーザーまたはグループ。
hub
Box Hub (Base)object
最も基本的なBox HubのBase版の表示。
role
string
editorBox Hubに付与されるアクセスレベル。使用可能な値はeditorviewerco-ownerです。
status
string
acceptedコラボレーション招待のステータス。ステータスがpendingの場合、loginnameは空の文字列を返します。次の値のいずれか1つ: accepted,pending,rejected
{
  "id": "12345678",
  "type": "hub_collaboration",
  "acceptance_requirements_status": {
    "strong_password_requirement": {
      "enterprise_has_strong_password_required_for_external_users": true,
      "user_has_strong_password": true
    },
    "terms_of_service_requirement": {
      "is_accepted": true,
      "terms_of_service": {
        "id": "11446498",
        "type": "terms_of_service"
      }
    },
    "two_factor_authentication_requirement": {
      "enterprise_has_two_factor_auth_enabled": true,
      "user_has_two_factor_authentication_enabled": true
    }
  },
  "accessible_by": {
    "id": "11446498",
    "type": "user",
    "login": "ceo@example.com",
    "name": "Aaron Levie"
  },
  "hub": {
    "id": "12345",
    "type": "hubs"
  },
  "role": "editor",
  "status": "accepted"
}