> ## 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.

# Jitbit Helpdesk

> This describes how to integrate with Jitbit Helpdesk.

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

## Integration Specifications

<IntegrationCapabilities lang="en" modes="ID/Password" lifecycle="provisioning, deactivate" fetch="User, Mail, Status" memo="Status is determined by the Disabled flag in Jitbit." />

## Prerequisites

### Creating an account

If you already have a Jitbit Helpdesk account, you can skip this step.

On the [Jitbit Helpdesk trial signup page](https://www.jitbit.com/saas-helpdesk/trial/), enter your **Work email**, **Full name**, and **Helpdesk URL**. Then click **Launch my helpdesk**.

<img src="https://mintcdn.com/moneyforwardi/52tkKFh5k2_P2Uzw/images/integrations/jitbit-helpdesk/create-account.png?fit=max&auto=format&n=52tkKFh5k2_P2Uzw&q=85&s=bc3cc451c71e7ccaa489562650936c2f" alt="Jitbit Helpdesk trial signup screen, with the Launch my helpdesk button highlighted in a red box" width="1920" height="1206" data-path="images/integrations/jitbit-helpdesk/create-account.png" />

### Checking your Helpdesk URL

1. After logging in to the Jitbit Helpdesk admin panel, check the **Helpdesk URL** under **General settings**. If you have set a custom domain, use the value in **Custom domain** instead. For details, see [How to find your Helpdesk URL (external site)](https://www.jitbit.com/docs/adminsettings/).

   <img src="https://mintcdn.com/moneyforwardi/52tkKFh5k2_P2Uzw/images/integrations/jitbit-helpdesk/check-helpdesk-url.png?fit=max&auto=format&n=52tkKFh5k2_P2Uzw&q=85&s=4c4dabc7f554f695e441bbc9039a87e7" alt="Jitbit Helpdesk Helpdesk URL screen" width="1920" height="406" data-path="images/integrations/jitbit-helpdesk/check-helpdesk-url.png" />

2. Build the **Base URL** for the integration in the format `https://{Helpdesk URL}.jitbit.com` (or your custom domain).

## Setting up the integration

1. On the integration screen, search for **Jitbit Helpdesk**.

2. Enter the **Base URL** you confirmed in the previous step. Also enter the **username** and **password** you use to log in to Jitbit Helpdesk, then click **Connect**.

   Entering a workspace name is optional.

   <img src="https://mintcdn.com/moneyforwardi/52tkKFh5k2_P2Uzw/images/integrations/jitbit-helpdesk/integration-setup.png?fit=max&auto=format&n=52tkKFh5k2_P2Uzw&q=85&s=5db1ffae8a2dabe908b7f08ff20ce95e" alt="Jitbit Helpdesk integration setup screen" width="642" height="982" data-path="images/integrations/jitbit-helpdesk/integration-setup.png" />

3. Once the integration with Jitbit Helpdesk succeeds, registered user information appears in the account list. If it doesn't complete successfully, first try the steps in [Troubleshooting failed SaaS integrations](/en/it-management/saas-management/93nahw45is-trouble). If that doesn't resolve it, check [Information to provide](/en/it-management/saas-management/93nahw45is-trouble#info-to-provide) and contact [support](/en/contact-support).
