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

    指定したIDのShield情報バリアを取得

    get
    https://api.box.com/2.0
    /shield_information_barriers/:shield_information_barrier_id

    このエンドポイントはバージョン2024.0です。引き続き使用するために 変更は必要ありません。詳細については、 **Box APIのバージョン管理**を参照してください。

    指定されたIDに基づいてShield情報バリアを取得します。

    リクエスト

    bearer [ACCESS_TOKEN]
    application/json

    パスパラメータ

    stringパス内必須
    1910967

    Shield情報バリアのID。

    レスポンス

    application/jsonShield情報バリア

    Shield情報バリアオブジェクトを返します。

    Shield情報バリアが見つからなかった場合はnot_foundエラーを返します。

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

    get
    指定したIDのShield情報バリアを取得
    このドキュメント内で一部のAPIを試せるようになりました。
    ログイン

    リクエストの例

    TypeScript Gen
    await client.shieldInformationBarriers.getShieldInformationBarrierById(
      barrierId,
    );

    レスポンスの例

    {
      "id": "11446498",
      "type": "shield_information_barrier",
      "created_at": "2020-06-26T18:44:45.869Z",
      "created_by": {
        "id": "11446498",
        "type": "user"
      },
      "enabled_at": "2020-07-26T18:44:45.869Z",
      "enabled_by": {
        "id": "11446498",
        "type": "user"
      },
      "enterprise": {
        "id": "1910967",
        "type": "enterprise"
      },
      "status": "draft",
      "updated_at": "2020-07-26T18:44:45.869Z",
      "updated_by": {
        "id": "11446498",
        "type": "user"
      }
    }