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

# Deel

> Deelとの連携方法です。

export const IntegrationCapabilities = ({lang = "ja", modes = "", plan = "", lifecycle = "", automation = "", fetch = "", capabilities = "", memo = ""}) => {
  const TEXT = ({
    ja: {
      rows: {
        mode: "連携モード",
        plan: "連携確認プラン",
        lifecycle: "アカウントライフサイクル",
        automation: "自動化",
        fetch: "取得データ",
        capabilities: "対応機能",
        memo: "備考"
      },
      empty: "-",
      more: "各項目の意味は[連携可能SaaS・機能対応一覧](/integrations/supported-saas)をご覧ください。",
      mode: {
        "API Key": "APIキー"
      },
      lifecycle: {
        provisioning: "アカウント作成",
        deactivate: "アカウント無効化",
        delete: "アカウント削除"
      },
      automation: {
        provisioning: "アカウント作成",
        deactivate: "アカウント無効化",
        delete: "アカウント削除"
      },
      fetch: {
        User: "ユーザー名",
        Mail: "メールアドレス",
        Role: "ロール",
        Status: "ステータス",
        "2FA": "二要素認証",
        LastActivity: "最終利用日",
        Licenses: "ライセンス"
      },
      capabilities: {
        "employee-master": "従業員マスター連携",
        "identity-provider": "IDプロバイダー連携",
        "cost-aggregation": "コスト管理",
        "file-aggregation": "ファイル管理",
        "file-permissions": "ファイル権限管理",
        "device-aggregation": "MDM連携"
      }
    },
    en: {
      rows: {
        mode: "Integration mode",
        plan: "Verified plan",
        lifecycle: "Account lifecycle",
        automation: "Automation",
        fetch: "Fetched data",
        capabilities: "Capabilities",
        memo: "Notes"
      },
      empty: "-",
      more: "See [Supported SaaS and Capabilities](/en/integrations/supported-saas) for what each item means.",
      mode: {},
      lifecycle: {
        provisioning: "Account creation",
        deactivate: "Account deactivation",
        delete: "Account deletion"
      },
      automation: {
        provisioning: "Account creation",
        deactivate: "Account deactivation",
        delete: "Account deletion"
      },
      fetch: {
        LastActivity: "Last Activity"
      },
      capabilities: {
        "employee-master": "HR master",
        "identity-provider": "Identity provider",
        "cost-aggregation": "Cost management",
        "file-aggregation": "File management",
        "file-permissions": "File permissions",
        "device-aggregation": "MDM integration"
      }
    }
  })[lang === "en" ? "en" : "ja"];
  const BADGE_COLORS = {
    "ID/Password": "yellow",
    "API Key": "cyan",
    OAuth: "red",
    App: "purple",
    User: "blue",
    Mail: "cyan",
    Role: "orange",
    Status: "teal",
    "2FA": "pink",
    LastActivity: "green",
    Licenses: "purple",
    provisioning: "green",
    delete: "red",
    deactivate: "yellow",
    "employee-master": "blue",
    "identity-provider": "teal",
    "cost-aggregation": "yellow",
    "file-aggregation": "cyan",
    "file-permissions": "orange",
    "device-aggregation": "purple"
  };
  const list = value => String(value || "").split(",").map(item => item.trim()).filter(Boolean);
  const badges = (source, labels) => {
    const values = list(source);
    if (values.length === 0) {
      return <span className="integration-capabilities-empty">{TEXT.empty}</span>;
    }
    return values.map(value => <span key={value} className={"integration-catalog-badge integration-catalog-badge--" + (BADGE_COLORS[value] || "gray")}>
        {labels?.[value] ?? value}
      </span>);
  };
  const text = value => value || <span className="integration-capabilities-empty">{TEXT.empty}</span>;
  const ROWS = [["mode", badges(modes, TEXT.mode)], ["plan", text(plan)], ["lifecycle", badges(lifecycle, TEXT.lifecycle)], ["automation", badges(automation, TEXT.automation)], ["fetch", badges(fetch, TEXT.fetch)], ["capabilities", badges(capabilities, TEXT.capabilities)], ["memo", text(memo)]];
  return <div className="integration-capabilities">
      <dl className="integration-capabilities-list">
        {ROWS.map(([key, value]) => <div className="integration-capabilities-row" key={key}>
            <dt>{TEXT.rows[key]}</dt>
            <dd>{value}</dd>
          </div>)}
      </dl>
    </div>;
};

## 連携仕様

<IntegrationCapabilities modes="API Key" fetch="User, Mail, Status" />

## 事前準備

### アクセスキーの取得方法

1. Deelにログイン後、設定画面を開き、**Services**（サービス）の**Developer**（開発者）を選択します。

   <img src="https://mintcdn.com/moneyforwardi/xh05AifYTyjhC1D3/images/integrations/deel/settings-menu.png?fit=max&auto=format&n=xh05AifYTyjhC1D3&q=85&s=12ceda382c1bb9953589e9a8b92dd0d4" alt="Deelの設定画面でDeveloperを選択する画面" width="572" height="1412" data-path="images/integrations/deel/settings-menu.png" />

2. **Developer**（開発者）配下の**Tokens**（トークン）をクリックします。

   <img src="https://mintcdn.com/moneyforwardi/xh05AifYTyjhC1D3/images/integrations/deel/developer-tokens-menu.png?fit=max&auto=format&n=xh05AifYTyjhC1D3&q=85&s=a3467317cfb487d802cb50a88dcfbf3c" alt="DeveloperメニューでTokensを選択する画面" width="564" height="414" data-path="images/integrations/deel/developer-tokens-menu.png" />

3. **Create token**（トークンを作成）をクリックし、**Token label**（トークンラベル）に任意の名前を入力します。**Token type**（トークンの種類）は**Organization token**（組織トークン、推奨）を選択します。

   <img src="https://mintcdn.com/moneyforwardi/xh05AifYTyjhC1D3/images/integrations/deel/create-token-details.png?fit=max&auto=format&n=xh05AifYTyjhC1D3&q=85&s=f34daf763e94844bb6ccad254eee7cad" alt="Token detailsでOrganization tokenを選択する画面" width="1920" height="833" data-path="images/integrations/deel/create-token-details.png" />

4. **Permission levels**（権限レベル）で**Group-level access**（グループレベルアクセス）を選択します。

   <img src="https://mintcdn.com/moneyforwardi/xh05AifYTyjhC1D3/images/integrations/deel/permission-levels.png?fit=max&auto=format&n=xh05AifYTyjhC1D3&q=85&s=25165512028c2c6b6f4f6974a256c8a8" alt="Permission levelsでGroup-level accessを選択する画面" width="1402" height="896" data-path="images/integrations/deel/permission-levels.png" />

5. 連携するグループを選択します。

   <img src="https://mintcdn.com/moneyforwardi/xh05AifYTyjhC1D3/images/integrations/deel/select-groups.png?fit=max&auto=format&n=xh05AifYTyjhC1D3&q=85&s=2c02d35178187625b1fc27c0b7157f1b" alt="Select groupsで連携するグループを選択する画面" width="1404" height="908" data-path="images/integrations/deel/select-groups.png" />

6. **Review**（確認）画面で設定内容を確認し、問題なければ次に進みます。

   <img src="https://mintcdn.com/moneyforwardi/xh05AifYTyjhC1D3/images/integrations/deel/token-review.png?fit=max&auto=format&n=xh05AifYTyjhC1D3&q=85&s=8b945684276f3d30651738d2ffc37ab3" alt="Reviewでトークンの設定内容を確認する画面" width="1502" height="1260" data-path="images/integrations/deel/token-review.png" />

7. トークンが生成されたら、表示された値をコピーして保存します。この画面を閉じると再表示できないため、必ずこの時点で保存してください。

   <img src="https://mintcdn.com/moneyforwardi/xh05AifYTyjhC1D3/images/integrations/deel/token-generated.png?fit=max&auto=format&n=xh05AifYTyjhC1D3&q=85&s=2c3900537481e4b8cff832e652df11a1" alt="New token was generatedダイアログでトークンをコピーする画面" width="980" height="710" data-path="images/integrations/deel/token-generated.png" />

## インテグレーションのセットアップ

1. インテグレーション画面にて**Deel**を検索します。

2. 前の手順で取得したトークンを**アクセスキー**として入力し、**連携する**をクリックします。

   <img src="https://mintcdn.com/moneyforwardi/xh05AifYTyjhC1D3/images/integrations/deel/admina-integration-modal.png?fit=max&auto=format&n=xh05AifYTyjhC1D3&q=85&s=3a17cae4326590cb64003cac877012a7" alt="Deel連携画面" width="746" height="720" data-path="images/integrations/deel/admina-integration-modal.png" />

3. Deelとの連携が成功すると、アカウント一覧に登録済みのユーザー情報が表示されます。正常に完了しない場合は、まず [SaaSとの連携に失敗する場合の対処法](/it-management/saas-management/93nahw45is-trouble) に記載のステップをお試しください。それでも解決しない場合は、[ご提供いただきたい情報](/it-management/saas-management/93nahw45is-trouble#info-to-provide) をご確認のうえ、[サポート窓口](/contact-support)までお問い合わせください。
