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

# Create Bulk Verification

> Create a new bulk IBAN holder verification request.

## Overview

This endpoint allows you to submit up to 2000 IBAN account holder verifications in a single request.

The bulk request is processed asynchronously.\
Once accepted, you can monitor its progress using the bulk status endpoint.

## Processing model

* Credits are debited at submission time.
* Each item is processed independently.
* Items with invalid format are marked as `rejected` and are not billed.
* If an item format was valid but the financial institution could not process the verification, the item is marked as `failed`. It this case, details are provided in the `status_reason` field.

## Limits

* Maximum 2000 items per request.
* Minimum 1 item.

## Response

A `200 Accepted` response indicates that the bulk has been successfully created and scheduled for processing.

Use the returned `id` to retrieve the bulk status and results.


## OpenAPI

````yaml POST /account-holder-verifications/bulk
openapi: 3.0.0
info:
  title: Ibantrack API
  description: IBAN account holder verification API
  version: 1.0.0
servers:
  - url: https://api.ibantrack.com/api-v1
    description: Production
security: []
paths:
  /account-holder-verifications/bulk:
    post:
      tags:
        - Account Holder Verifications
      summary: Submit Bulk IBAN Holder Verifications
      description: Submit up to 2000 account holder verifications in a single request.
      operationId: createBulkAccountHolderVerification
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkVerificationRequest'
            example:
              verifications:
                - account:
                    iban: FR7630004000031234567890143
                  account_holder:
                    name: Jean Dupont
                - account:
                    iban: FR1420041010050500013M02606
                  account_holder:
                    name: Marie Martin
                - account:
                    iban: FR7630006000011234567890189
                  account_holder:
                    name: SARL TECHSOLUTIONS
      responses:
        '200':
          description: Bulk accepted for processing
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient credits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    BulkVerificationRequest:
      type: object
      required:
        - verifications
      properties:
        verifications:
          type: array
          minItems: 1
          maxItems: 2000
          description: >-
            List of account holder verifications to process in bulk (maximum
            2000 per request).
          items:
            $ref: '#/components/schemas/VerificationRequest'
    BulkResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - accepted
            - processing
            - completed
        total_items:
          type: integer
        created_at:
          type: string
          format: date-time
    ErrorResponse:
      type: object
      properties:
        code:
          type: string
          example: iban_required
        message:
          type: string
          example: The IBAN field is required within account object.
    VerificationRequest:
      type: object
      required:
        - account
        - account_holder
      properties:
        account:
          type: object
          additionalProperties: false
          required:
            - iban
          properties:
            iban:
              type: string
              description: IBAN of the account to be verified.
              example: FR7630004000031234567890143
        account_holder:
          type: object
          additionalProperties: false
          required:
            - name
          properties:
            name:
              type: string
              description: >-
                Name of the account holder to be verified.


                - For individuals: full legal name.

                - For businesses: legal business name (company name).


                Identifiers such as VAT numbers, LEI, SIREN or other national
                identifiers must not be provided in this field and will result
                in a `no_match` outcome.
              example: Jean Dupont
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````