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

# 事業部門を取得

> ABBYY FlexiCapture for Invoices Cloud API の Get business unit GET メソッドを使用して、指定した地域の事業部門一覧を取得します。

指定した地域に対応する事業部門の一覧を返します。

<div id="http-request">
  ## HTTP リクエスト
</div>

```http theme={null}
GET https://api-{location-id}.flexicapture.com/v2/dataset/businessunits/{region}
```

`{location-id}` は、ご利用の[サポートされているロケーション](/ja/flexi-capture/cloud/cloud-f-cfor-invoices-api#icaas-supported-countries)に置き換えてください。

<div id="path-parameters">
  ## パス パラメーター
</div>

| パラメーター       | 型              | 説明                                                              |
| ------------ | -------------- | --------------------------------------------------------------- |
| `region`     | path, string   | 必須。Invoice の対象地域。対応地域: US: USA、AU: オーストラリア、EU: 欧州連合加盟国、CA: カナダ。 |
| `ExternalId` | query, string  | 任意。外部事業部門 ID。                                                   |
| `Skip`       | query, integer | 任意。スキップ件数。                                                      |

<div id="response">
  ## レスポンス
</div>

成功した場合、レスポンス本文には `BusinessUnitsResponseModel` のインスタンスが含まれます。リクエストが成功しても、指定されたリージョンの事業部門が見つからない場合、サーバーは HTTP ステータス `204 No Content` を返します。

```json theme={null}
{
  "external_id": "string",
  "name": [
    "string"
  ],
  "street": [
    "string"
  ],
  "city": [
    "string"
  ],
  "state": [
    "string"
  ],
  "zip": [
    "string"
  ],
  "country_code": "string",
  "vat": [
    "string"
  ]
}
```

| Field          | 型      | 説明                            |
| -------------- | ------ | ----------------------------- |
| `external_id`  | string | 必須。外部事業部門ID。                  |
| `name[]`       | string | 必須。事業部門名。                     |
| `street[]`     | string | 任意。事業部門の住所。                   |
| `city[]`       | string | 任意。事業部門の市区町村。                 |
| `state[]`      | string | 任意。事業部門の州。                    |
| `zip[]`        | string | 任意。事業部門の郵便番号。                 |
| `country_code` | string | 必須。ISO 3166-1 alpha-2形式の国コード。 |
| `vat[]`        | string | 任意。納税者ID。                     |
