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

# Tokenize via Open Banking

> Tokenize an account using open banking account data for use in subsequent Process requests.

<Warning>
  **Under Development — Coming Soon.** This endpoint is currently under development and is not yet available for integration. Specifications are subject to change prior to general availability. Contact your Ingo integration manager for availability updates.
</Warning>


## OpenAPI

````yaml specs/ingopay-verify-open-banking.yaml POST /gateway/verify--open-banking
openapi: 3.0.0
info:
  title: IngoPay — Open Banking Tokenization
  version: 1.0.0
  description: >-
    This endpoint is currently under development. Specifications are subject to
    change prior to general availability.


    Tokenize an account using open banking data.
  contact:
    name: Ingo Payments Integrations
    url: https://developers.ingopayments.com
servers:
  - url: https://sandbox-api.ingomoney.com
    description: Sandbox
  - url: https://api.ingomoney.com
    description: Production
security: []
paths:
  /gateway/verify--open-banking:
    post:
      tags:
        - Open Banking
      summary: Tokenize via Open Banking
      description: >-
        ⚠️ **Under Development — Coming Soon.** This endpoint is currently under
        development. Specifications are subject to change prior to general
        availability.
      operationId: verifyOpenBanking
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OpenBankingVerifyRequest'
      responses:
        '200':
          description: Open banking tokenization response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenBankingVerifyResponse'
components:
  schemas:
    OpenBankingVerifyRequest:
      type: object
      description: Open banking account tokenization request.
      properties:
        request:
          type: string
          description: REQUIRED
        participant_id:
          type: string
          description: REQUIRED
        timestamp:
          type: string
          description: REQUIRED
        open_banking_request:
          type: string
          description: REQUIRED
        open_banking_provider:
          type: string
          description: REQUIRED
        requested_data:
          type: string
          description: REQUIRED
        from_date:
          type: string
          description: CONDITIONAL
        to_date:
          type: string
          description: CONDITIONAL
        customer_account_token:
          type: string
          description: CONDITIONAL
        account_identifier:
          type: string
          description: CONDITIONAL
        account_identifier_finicity:
          type: string
          description: CONDITIONAL
        customer_id:
          type: string
          description: REQUIRED
        account_id:
          type: string
          description: REQUIRED
        response:
          type: string
          description: REQUIRED
        status:
          type: string
          description: REQUIRED
        message:
          type: string
          description: REQUIRED
        duration:
          type: string
          description: REQUIRED
        open_banking:
          type: string
          description: REQUIRED
        open_banking_response:
          type: string
          description: REQUIRED
    OpenBankingVerifyResponse:
      type: object
      description: Open banking tokenization response.
      properties:
        status:
          type: integer
          description: Gateway status code. 100 = Success.
          example: 100
        client_message:
          type: string
          description: Human-readable status message.
          example: Success
        data:
          type: object
          description: Response data.
        time:
          type: string
          description: Request processing time in seconds.
          example: '0.85'

````