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

# Vendor abrufen

> Mit der GET-Methode Get vendor in der ABBYY FlexiCapture for Invoices Cloud API eine Liste von Vendors für eine bestimmte Region abrufen.

Gibt eine Liste von Vendors für die angegebene Region zurück.

<div id="http-request">
  ## HTTP-Anfrage
</div>

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

Ersetzen Sie `{location-id}` durch Ihren [unterstützten Standort](/de/flexi-capture/cloud/cloud-f-cfor-invoices-api#icaas-supported-countries).

<div id="path-parameters">
  ## Pfadparameter
</div>

| Parameter    | Typ            | Beschreibung                                                                                                                              |
| ------------ | -------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| `region`     | path, string   | Erforderlich. Region der Rechnung. Unterstützte Regionen: `US`: USA, `AU`: Australien, `EU`: Länder der Europäischen Union, `CA`: Kanada. |
| `ExternalId` | query, string  | Optional. Externe Geschäftsbereichs-ID.                                                                                                   |
| `Skip`       | query, integer | Optional. Anzahl der zu überspringenden Elemente.                                                                                         |
| `Take`       | query, integer | Optional. Anzahl der zurückzugebenden Elemente.                                                                                           |

<div id="response">
  ## Antwort
</div>

Bei Erfolg enthält der Antworttext eine Instanz von `VendorsResponseModel`. Wenn die Anfrage erfolgreich ist, aber keine Vendors mit der angegebenen Region gefunden werden, gibt der Server den HTTP-Status `204 No Content` zurück.

```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"
    ]
  }
]
```

| Feld               | Typ    | Beschreibung                                           |
| ------------------ | ------ | ------------------------------------------------------ |
| `external_id`      | string | Erforderlich. Externe Vendor-ID.                       |
| `business_unit_id` | string | Erforderlich. Geschäftsbereich-ID.                     |
| `name[]`           | string | Erforderlich. Vendor-Name.                             |
| `street[]`         | string | Optional. Straße des Vendors.                          |
| `city[]`           | string | Optional. Stadt des Vendors.                           |
| `state[]`          | string | Optional. Bundesstaat des Vendors.                     |
| `zip[]`            | string | Optional. Postleitzahl des Vendors.                    |
| `country_code`     | string | Erforderlich. Ländercode im Format ISO 3166-1 alpha-2. |
| `vat[]`            | string | Optional. Steuer-ID.                                   |
| `national_vat[]`   | string | Optional. Nationale Steuer-ID.                         |
| `iban[]`           | string | Optional. Internationale Bankkontonummer (IBAN).       |
| `bank_account[]`   | string | Optional. Bankkonto-ID.                                |
| `bank_code[]`      | string | Optional. Bankleitzahl.                                |
| `gl_code[]`        | string | Optional. Hauptbuchcode.                               |
