> ## 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 vendor GET メソッドを使用して、指定した地域のVendors一覧を取得します。

指定した地域に対応するVendors一覧を返します。"

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

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

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

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

| パラメーター       | 型              | 説明                                                                                |
| ------------ | -------------- | --------------------------------------------------------------------------------- |
| `region`     | path, string   | 必須。請求書の対象Region。サポートされているRegion: `US`: USA、`AU`: オーストラリア、`EU`: 欧州連合加盟国、`CA`: カナダ。 |
| `ExternalId` | query, string  | 任意。外部事業部門 ID。                                                                     |
| `Skip`       | query, integer | 任意。スキップする件数。                                                                      |
| `Take`       | query, integer | 任意。取得する件数。                                                                        |

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

成功した場合、レスポンスボディには `VendorsResponseModel` のインスタンスが含まれます。リクエストは成功したものの、指定した Region の Vendors が見つからない場合、サーバーは HTTP ステータス `204 No Content` を返します。

```json theme={null}
[
  {
    "external_id": "string",
    "business_unit_id": "string",
    "name": [
      "string"
    ],
    "street": [
      "string"
    ],
    "city": [
      "string"
    ],
    "state": [
      "string"
    ],
    "zip": [
      "string"
    ],
    "country_code": "string",
    "vat": [
      "string"
    ],
    "national_vat": [
      "string"
    ],
    "iban": [
      "string"
    ],
    "bank_account": [
      "string"
    ],
    "bank_code": [
      "string"
    ],
    "gl_code": [
      "string"
    ]
  }
]
```

| フィールド              | 型      | 説明                             |
| ------------------ | ------ | ------------------------------ |
| `external_id`      | string | 必須。外部ベンダーの ID。                 |
| `business_unit_id` | string | 必須。事業部門 ID。                    |
| `name[]`           | string | 必須。ベンダー名。                      |
| `street[]`         | string | 任意。ベンダーの住所。                    |
| `city[]`           | string | 任意。ベンダーの市区町村。                  |
| `state[]`          | string | 任意。ベンダーの都道府県／州。                |
| `zip[]`            | string | 任意。ベンダーの郵便番号。                  |
| `country_code`     | string | 必須。ISO 3166-1 alpha-2 形式の国コード。 |
| `vat[]`            | string | 任意。納税者 ID。                     |
| `national_vat[]`   | string | 任意。国内納税者 ID。                   |
| `iban[]`           | string | 任意。IBAN (国際銀行口座番号) 。           |
| `bank_account[]`   | string | 任意。銀行口座 ID。                    |
| `bank_code[]`      | string | 任意。銀行コード。                      |
| `gl_code[]`        | string | 任意。総勘定元帳コード。                   |
