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

Aktualisiert Vendor-Informationen im Datensatz.

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

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

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

<div id="request-body">
  ## Request-Body
</div>

Der Request-Body hat die folgende Struktur:

```json theme={null}
{
  "region": "US",
  "vendors": [
    {
      "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                     |
| ------- | ------------------------------------------ | -------------------------------- |
| `model` | Tabellenkörper, object(UpdateVendorsModel) | Erforderlich. Liste von Vendors. |

<div id="updatevendorsmodel">
  ### UpdateVendorsModel
</div>

| Feld        | Typ                 | Beschreibung                                                                                                                             |
| ----------- | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `region`    | string              | Erforderlich. Region der Vendors. Unterstützte Regionen: `US`: USA, `AU`: Australien, `EU`: Länder der Europäischen Union, `CA`: Kanada. |
| `vendors[]` | object(VendorModel) | Erforderlich. Liste der Vendors.                                                                                                         |

<div id="vendormodel">
  ### VendorModel
</div>

| Feld               | Typ    | Beschreibung                                           |
| ------------------ | ------ | ------------------------------------------------------ |
| `external_id`      | string | Erforderlich. Externe Vendor-ID.                       |
| `business_unit_id` | string | Erforderlich. ID des Geschäftsbereichs.                |
| `name[]`           | string | Erforderlich. Name des Vendors.                        |
| `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 des Vendors.                       |
| `national_vat[]`   | string | Optional. Nationale Steuer-ID des Vendors.             |
| `iban[]`           | string | Optional. Internationale Bankkontonummer (IBAN).       |
| `bank_account[]`   | string | Optional. Bankkontonummer.                             |
| `bank_code[]`      | string | Optional. Bankleitzahl.                                |
| `gl_code[]`        | string | Optional. Sachkontocode.                               |

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

Bei Erfolg gibt der Server den HTTP-Status `204 No Content` zurück.
