> ## 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 for Agentforce拡張パッケージ

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>;
};

[Box for Agentforce拡張パッケージ][agentforce]は、Box for Salesforce管理パッケージの拡張機能です。この拡張機能は、Salesforce内でワークフローを自動化したり、インテリジェントなエージェントベースのプロセスを強化したりするのに役立つ、再利用可能なAgentforce<Link href="/guides/tooling/salesforce-toolkit/flow-actions">アクション</Link>を提供します。これは、Box for Salesforceパッケージのコア機能を基に作成されており、グローバルで呼び出し可能なApexメソッドを使用して機能性を高めます。Box for Agentforce拡張パッケージでは、Agentforceアクション内でBoxの名前空間を使用することでメソッドを参照します。

## Agentforceフローのメソッド

以下のリストには、Agentforceで呼び出し可能な<Link href="/guides/tooling/salesforce-toolkit/methods">メソッド</Link>の例を示しています。

### フォルダとファイルの管理

* フォルダの作成
* フォルダの関連付けを作成
* レコードID用のフォルダを作成
* テンプレートからレコードID用のフォルダを作成
* フォルダIDでフォルダのコンテンツを取得
* レコードIDでフォルダIDを取得
* フォルダURLを取得
* フォルダの移動
* レコードIDでオブジェクトフォルダを取得
* フォルダIDでレコードIDを取得
* フォルダ用URLを取得

### メタデータの管理

* ファイルIDでBoxメタデータを作成
* フォルダIDでBoxメタデータを作成
* ファイルIDでBoxメタデータを削除
* フォルダIDでBoxメタデータを削除
* フォルダIDでBoxメタデータを更新
* ファイルIDでBoxメタデータを取得
* フォルダIDでBoxメタデータを取得

### コラボレーション

* コラボレーションを作成
* レコードにコラボレーションを作成
* コラボレーションを編集
* コラボレーションを削除

### Box Hubs

* Hubを取得
* Hubコラボレーションを取得
* Hubをコピー
* Hubを作成
* IDでHubを取得

### その他のアクション

* 添付ファイルからファイルを作成
* Doc Genのバッチを取得
* SalesforceレコードIDでフォルダの関連付けを取得
* フォルダIDでメタデータカスケードポリシーを取得
* IDでメタデータカスケードポリシーを取得
* メタデータカスケードポリシーを作成
* メタデータカスケードポリシーを削除
* Slackチャンネルマッピングを作成
* Slackチャンネルアクセス管理を無効に設定

[agentforce]: https://support.box.com/hc/en-us/articles/40370228349331-Installing-Box-for-Agentforce

<RelatedLinks
  title="関連するガイド"
  items={[
{ label: translate("Install Salesforce SDK"), href: "/guides/tooling/sdks/salesforce", badge: "GUIDE" }
]}
/>
