> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Box Automate

export const MultiRelatedLinks = ({sections = []}) => {
  if (!sections || sections.length === 0) {
    return null;
  }
  return <div className="space-y-8">
      {sections.map((section, index) => <RelatedLinks key={index} title={section.title} items={section.items} />)}
    </div>;
};

export const RelatedLinks = ({title, items = []}) => {
  const getBadgeClass = badge => {
    if (!badge) return "badge-default";
    const badgeType = badge.toLowerCase().replace(/\s+/g, "-");
    return `badge-${badge === "ガイド" ? "guide" : badgeType}`;
  };
  if (!items || items.length === 0) {
    return null;
  }
  return <div className="my-8">
      {}
      <h3 className="text-sm font-bold uppercase tracking-wider mb-4">{title}</h3>

      {}
      <div className="flex flex-col gap-3">
        {items.map((item, index) => <a key={index} href={item.href} className="py-2 px-3 rounded related_link hover:bg-[#f2f2f2] dark:hover:bg-[#111827] flex items-center gap-3 group no-underline hover:no-underline border-b-0">
            {}
            <span className={`px-2 py-1 rounded-full text-xs font-semibold uppercase tracking-wide flex-shrink-0 ${getBadgeClass(item.badge)}`}>
              {item.badge}
            </span>

            {}
            <span className="text-base">{item.label}</span>
          </a>)}
      </div>
    </div>;
};

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

<Note>
  Box Automateを利用できるかどうかは、ご利用のBoxプランおよび組織での本製品の有効化状況によって異なります。実稼働環境のコンテンツに対して統合を構築する前に、Box管理者または担当のアカウントチームにご相談ください。
</Note>

Box Automateは、Boxのコンテンツプラットフォーム上にネイティブに構築されたワークフロー自動化プラットフォームです。条件分岐、ループ、および幅広いトリガーと操作をサポートするビジュアルビルダーを使用して、自動化されたワークフローの設計、構築、実行が可能です。この概要では、本プラットフォームの機能、開発者による統合方法、およびワークフローと併用するBox Platform APIとスコープについて説明します。

## 機能

* **トリガー** — ファイル、フォルダ、タスク、ファイルリクエスト、Box Sign、メタデータトリガー、フォーム送信 (手動)、Webhookイベントをトリガーとしてワークフローを開始できます。
* **結果** — ファイルとフォルダの結果、コラボレーション、タスクの割り当て、ワークフローを利用して、タスクを割り当てたり、通知、AIの結果、統合、メタデータを送信したりできます。
* **ロジック** — 分岐、変数、JSONPath、構造化されたAI出力を利用して、処理のルーティングや各ステップ間でのデータの受け渡しを行うことができます。
* **AI** — カスタムエージェントで、ナレッジソース、引用、および推論のトレースを利用できます (こうした機能が組織で有効化されている場合)。

## ユースケース

Box Automateは、コンテンツ、人の判断、ポリシーが関わるドキュメント中心型プロセスに適しています。代表的な例としては、次のようなものがあります。

* **承認とレビュー** — レビューのためにファイルをルーティングし、結果を取得して、関係者に通知します。
* **ケースとプロジェクトフォルダ** — アップロードやメタデータの変更に応じて、自動的に次のステップを開始します。
* **AIを活用したトリアージ** — 受信したコンテンツを分類または要約し、その結果に基づいて処理を分岐させます。
* **製品間のフロー** — アップロード (例: ファイルリクエスト)、メタデータ、Doc Gen、またはSignを1つの自動化として統合します。

## 開発者による統合

自動化はBoxのコンテンツ上で実行されます。ほとんどの統合では、<Link href="/guides/applications/platform-apps">Platformアプリケーション</Link>、標準のOAuthまたはJWT認証、各種のワークフローAPI、さらにコンテンツエンドポイントおよびコラボレーションエンドポイントを使用します。最初に、<Link href="/guides/box-automate/getting-started-box-automate">Box Automateの使い方</Link>を参照してください。

## レート制限

ワークフローおよびコンテンツAPIコールには、Box Platformのレート制限が適用されます。詳細については、<Link href="/guides/api-calls/permissions-and-errors/rate-limits">レート制限ガイド</Link>を参照してください。

<RelatedLinks
  title="関連するガイド"
  items={[
{ label: translate("Get started with Box Automate"), href: "/guides/box-automate/getting-started-box-automate", badge: "GUIDE" },
{ label: translate("Triggers, actions, and logic"), href: "/guides/box-automate/triggers-and-logic", badge: "GUIDE" },
{ label: translate("File Requests overview"), href: "/guides/file-requests/index", badge: "GUIDE" },
{ label: translate("Box AI Studio overview"), href: "/guides/ai-studio/index", badge: "GUIDE" }
]}
/>
