Toqio Customer API

The Customer API from Toqio — 7 operation(s) for customer.

Operations 7

POST /customers Create Customer #
GET /customers/{customerId} Find Customer #
GET /customers/{customerId}/assetTypes Get Asset Types #
GET /customers/{customerId}/currencies Get available currencies for a customer #
GET /customers/{customerId}/capability Get capabilities #
GET /customers/{customerId}/connectionStatus Get customer connection status #
GET /customers/{customerId}/partnerProducts Get Partner Products #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/toqio-customer-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

toqio-customer-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Toqio Integration Hub Customer API
  version: v0
servers:
- url: https://your_connector_url
  description: This is an example url that you could use for testing purposes as this documentation describes the API that you must develop in your connector.
security:
- bearerAuth: []
tags:
- name: Customer
paths:
  /customers:
    post:
      tags:
      - Customer
      summary: Create Customer
      description: ''
      operationId: createCustomer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SaveCustomerRequest'
        required: true
      responses:
        '200':
          description: Successful operation
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ToqioHttpOkViewCustomerBaseResponse'
        '400':
          description: Bad request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CustomException'
  /customers/{customerId}:
    get:
      tags:
      - Customer
      summary: Find Customer
      description: ''
      operationId: findCustomer
      parameters:
      - name: customerId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ToqioHttpOkViewCustomerBaseResponse'
        '404':
          description: CUSTOMER_NOT_FOUND
  /customers/{customerId}/assetTypes:
    get:
      tags:
      - Customer
      summary: Get Asset Types
      description: ''
      operationId: getAssetTypes
      parameters:
      - name: customerId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToqioHttpOkAssetTypeResponse'
        '404':
          description: Bank not found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/DocumentNotFoundException'
  /customers/{customerId}/currencies:
    get:
      tags:
      - Customer
      summary: Get available currencies for a customer
      description: ''
      operationId: getBillingCurrencies
      parameters:
      - name: customerId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Currencies retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToqioHttpOkAssetTypeResponse'
        '404':
          description: Bank not found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/DocumentNotFoundException'
  /customers/{customerId}/capability:
    get:
      tags:
      - Customer
      summary: Get capabilities
      description: ''
      operationId: getCapabilities
      parameters:
      - name: customerId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Capabilities retrieved successfully
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ToqioHttpOkCapabilityResponse'
        '404':
          description: CUSTOMER_NOT_FOUND
  /customers/{customerId}/connectionStatus:
    get:
      tags:
      - Customer
      summary: Get customer connection status
      description: ''
      operationId: getCustomerConnectionStatus
      parameters:
      - name: customerId
        in: path
        description: The ID of the customer
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ToqioHttpOkCustomerConnectionStatusResponse'
        '404':
          description: CUSTOMER_NOT_FOUND
  /customers/{customerId}/partnerProducts:
    get:
      tags:
      - Customer
      summary: Get Partner Products
      description: ''
      operationId: getPartnerProducts
      parameters:
      - name: customerId
        in: path
        required: true
        schema:
          type: string
      - name: countryCode
        in: query
        required: false
        schema:
          type: string
      - name: clientId
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ToqioHttpOkPartnerProductResponse'
        '404':
          description: Bank not found
components:
  schemas:
    ViewCustomerBaseResponse:
      type: object
      properties:
        id:
          type: string
        apiKey:
          type: string
        provider:
          type: string
        superCustomerId:
          type: string
        paymentProvider:
          $ref: '#/components/schemas/PaymentProvider'
        commercialName:
          type: string
        availableCurrencies:
          type: array
          items:
            type: string
    ToqioHttpOkCapabilityResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/Capability'
        code:
          type: string
          example: OK
        errorSeverity:
          type: string
          example: NONE
        message:
          type: string
          example: Ok
        httpStatus:
          type: integer
          format: int32
          example: 200
        requestId:
          type: string
          example: 26b0f78a-79f9-426d-a20b-79841345ae51
        date:
          type: string
          example: '2024-08-01T00:00:00.000Z'
    CustomException:
      type: object
      properties:
        code:
          type: string
          example: OK
        errorSeverity:
          type: string
          example: NONE
        message:
          type: string
          example: Ok
        httpStatus:
          type: integer
          format: int32
          example: 200
        requestId:
          type: string
          example: 26b0f78a-79f9-426d-a20b-79841345ae51
        date:
          type: string
          example: '2024-08-01T00:00:00.000Z'
        errorOrigin:
          type: string
    PartnerProductResponse:
      type: object
      properties:
        code:
          type: string
        assetType:
          deprecated: true
          type: string
          enum:
          - aud
          - chf
          - cad
          - sek
          - usd
          - nok
          - jpy
          - nzd
          - gold
          - gbp
          - eur
          - czk
          - dkk
          - huf
          - pln
          - ron
          - ils
          - rub
          - bhd
          - sar
          - bgn
          - kes
          - sgd
          - kwd
          - zar
          - cny
          - myr
          - hrk
          - mxn
          - thb
          - try
          - omr
          - ugx
          - hkd
          - php
          - aed
          - inr
          - qar
          - idr
          - points
        assetTypes:
          type: array
          items:
            type: string
            enum:
            - aud
            - chf
            - cad
            - sek
            - usd
            - nok
            - jpy
            - nzd
            - gold
            - gbp
            - eur
            - czk
            - dkk
            - huf
            - pln
            - ron
            - ils
            - rub
            - bhd
            - sar
            - bgn
            - kes
            - sgd
            - kwd
            - zar
            - cny
            - myr
            - hrk
            - mxn
            - thb
            - try
            - omr
            - ugx
            - hkd
            - php
            - aed
            - inr
            - qar
            - idr
            - points
        label:
          $ref: '#/components/schemas/I18nLabel'
        holderBank:
          type: string
        holderBankAddress:
          type: string
        holderBankSWIFT:
          type: string
        correspondentBank:
          type: string
        correspondentBankAddress:
          type: string
        correspondentBankSWIFT:
          type: string
        schemes:
          type: array
          items:
            type: string
            enum:
            - SEPA
            - SEPA_INSTANT
            - INTERLEDGER
            - SWIFT
            - UK_FASTER_PAYMENTS
            - CHAPS
            - FX
            - BACS
            - TARGET2
            - SPEI
            - AUS_PAY_NET
            - EFT
            - NCS
            - CERTIS
            - STRAKSCLEARING_INSTANT
            - INTRADAGCLEARING
            - CHATS
            - GIRO_ZRT
            - IMPS
            - NEFT
            - SKN
            - IBG
            - NORWEGIAN_INTERBANK_CLEARING_SYSTEM
            - PESONET
            - ELIXIR
            - TRANSFOND_SENT_ACH
            - FAST
            - INTERNAL_TRANSFER
            - RIX
            - FEDACH
            - FEDWIRE
            - CHIPS
      required:
      - code
      - assetType
      - label
      - schemes
    ToqioHttpOkPartnerProductResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PartnerProductResponse'
        code:
          type: string
          example: OK
        errorSeverity:
          type: string
          example: NONE
        message:
          type: string
          example: Ok
        httpStatus:
          type: integer
          format: int32
          example: 200
        requestId:
          type: string
          example: 26b0f78a-79f9-426d-a20b-79841345ae51
        date:
          type: string
          example: '2024-08-01T00:00:00.000Z'
    ToqioHttpOkCustomerConnectionStatusResponse:
      type: object
      properties:
        data:
          type: string
          enum:
          - CONNECTED
          - FAILED
        code:
          type: string
          example: OK
        errorSeverity:
          type: string
          example: NONE
        message:
          type: string
          example: Ok
        httpStatus:
          type: integer
          format: int32
          example: 200
        requestId:
          type: string
          example: 26b0f78a-79f9-426d-a20b-79841345ae51
        date:
          type: string
          example: '2024-08-01T00:00:00.000Z'
    I18nLabel:
      type: object
      properties:
        es:
          type: string
        en:
          type: string
        de:
          type: string
        it:
          type: string
        zh:
          type: string
        pt:
          type: string
    SaveCustomerRequest:
      required:
      - id
      - apiKey
      type: object
      properties:
        id:
          type: string
        apiKey:
          type: string
        providerConfigId:
          type: string
          deprecated: true
        provider:
          type: string
        paymentProvider:
          $ref: '#/components/schemas/PaymentProvider'
          deprecated: true
        commercialName:
          type: string
        availableCurrencies:
          type: array
          items:
            type: string
    DocumentNotFoundException:
      type: object
      properties:
        code:
          type: string
          example: OK
        errorSeverity:
          type: string
          example: NONE
        message:
          type: string
          example: Ok
        httpStatus:
          type: integer
          format: int32
          example: 200
        requestId:
          type: string
          example: 26b0f78a-79f9-426d-a20b-79841345ae51
        date:
          type: string
          example: '2024-08-01T00:00:00.000Z'
        errorOrigin:
          type: string
    ToqioHttpOkAssetTypeResponse:
      type: object
      properties:
        data:
          type: string
          enum:
          - aud
          - chf
          - cad
          - sek
          - usd
          - nok
          - jpy
          - nzd
          - gold
          - gbp
          - eur
          - czk
          - dkk
          - huf
          - pln
          - ron
          - ils
          - rub
          - bhd
          - sar
          - bgn
          - kes
          - sgd
          - kwd
          - zar
          - cny
          - myr
          - hrk
          - mxn
          - thb
          - try
          - omr
          - ugx
          - hkd
          - php
          - aed
          - inr
          - qar
          - idr
          - points
        code:
          type: string
          example: OK
        errorSeverity:
          type: string
          example: NONE
        message:
          type: string
          example: Ok
        httpStatus:
          type: integer
          format: int32
          example: 200
        requestId:
          type: string
          example: 26b0f78a-79f9-426d-a20b-79841345ae51
        date:
          type: string
          example: '2024-08-01T00:00:00.000Z'
    Capability:
      type: object
      properties:
        hasOwnOTP:
          type: boolean
        canResendOTP:
          type: boolean
        canRetrievePan:
          type: boolean
        allowSixMonthsStatements:
          type: boolean
        allowVirtualCards:
          type: boolean
        allowEditBeneficiaries:
          type: boolean
        hasSecurityQuestions:
          type: boolean
        hasPhysicalCardVerificationNumber:
          type: boolean
        hasMeaWalletConfig:
          type: boolean
        hasBusinessCode:
          type: boolean
        hasToCreateEndUserKYC:
          type: boolean
        canCancelAccounts:
          type: boolean
        canRemoveAccounts:
          type: boolean
        hasAccountPurposes:
          type: boolean
        hasExpectedVolume:
          type: boolean
        needAccountSignature:
          type: boolean
        canRunCompliance:
          type: boolean
          description: Indicates if the bank needs to run compliance checks before creating an account
    PaymentProvider:
      deprecated: true
      type: object
      properties:
        customerId:
          type: string
        paymentProviderType:
          type: string
        key:
          type: string
        loginId:
          type: string
        hmacKey:
          type: string
    ToqioHttpOkViewCustomerBaseResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/ViewCustomerBaseResponse'
        code:
          type: string
          example: OK
        errorSeverity:
          type: string
          example: NONE
        message:
          type: string
          example: Ok
        httpStatus:
          type: integer
          format: int32
          example: 200
        requestId:
          type: string
          example: 26b0f78a-79f9-426d-a20b-79841345ae51
        date:
          type: string
          example: '2024-08-01T00:00:00.000Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-source-pages:
- https://integrate.toq.io/reference/acceptloanoffer-1
- https://integrate.toq.io/reference/applydirectdebit-1
- https://integrate.toq.io/reference/createaccount-1
- https://integrate.toq.io/reference/createbeneficiary-1
- https://integrate.toq.io/reference/createcustomer-1
- https://integrate.toq.io/reference/createlenderconfiguration-1
- https://integrate.toq.io/reference/createlendingrequest-1
- https://integrate.toq.io/reference/createmerchant-1
- https://integrate.toq.io/reference/deleteaccount-1
- https://integrate.toq.io/reference/deletebeneficiary-1
- https://integrate.toq.io/reference/deletemeawalletapiconfig-1
- https://integrate.toq.io/reference/fetchtransactions-1
- https://integrate.toq.io/reference/findaccounttransactionliststatement
- https://integrate.toq.io/reference/findaccounttransactionliststatement_1
- https://integrate.toq.io/reference/findbeneficiary-1
- https://integrate.toq.io/reference/findcustomer-1
- https://integrate.toq.io/reference/getaccount-1
- https://integrate.toq.io/reference/getaccountownershipcertificate-1
- https://integrate.toq.io/reference/getaccounts-1
- https://integrate.toq.io/reference/getassettypes-1
- https://integrate.toq.io/reference/getbankpaymentschemes-1
- https://integrate.toq.io/reference/getbankstatementfooter-1
- https://integrate.toq.io/reference/getbeneficiary-1
- https://integrate.toq.io/reference/getbeneficiaryfilters-1
- https://integrate.toq.io/reference/getbillingcurrencies-1
- https://integrate.toq.io/reference/getcapabilities-1
- https://integrate.toq.io/reference/getcompany-1
- https://integrate.toq.io/reference/getcontract-1
- https://integrate.toq.io/reference/getcustomerconnectionstatus-1
- https://integrate.toq.io/reference/getdefaultrepaymentterms-1
- https://integrate.toq.io/reference/getdynamicaccountbalances
- https://integrate.toq.io/reference/getdynamicbuttonconfiguration-1
- https://integrate.toq.io/reference/getlenderconfiguration-1
- https://integrate.toq.io/reference/getlendingrequest-1
- https://integrate.toq.io/reference/getlendingrequestsbyfilter-1
- https://integrate.toq.io/reference/getloan-1
- https://integrate.toq.io/reference/getloanoffer-1
- https://integrate.toq.io/reference/getloansbyfilter-1
- https://integrate.toq.io/reference/getloantransactions-1
- https://integrate.toq.io/reference/getmandatedetail-1
- https://integrate.toq.io/reference/getmandates-1
- https://integrate.toq.io/reference/getmeawalletapiconfig-1
- https://integrate.toq.io/reference/getpartnerproducts-1
- https://integrate.toq.io/reference/getpaymentoptions
- https://integrate.toq.io/reference/getproviderpartnerproducts-1
- https://integrate.toq.io/reference/getquoteforcurrencypair-1
- https://integrate.toq.io/reference/gettransactionstatus-1
- https://integrate.toq.io/reference/hostedonboarding-1
- https://integrate.toq.io/reference/notifycustomnotificationerrors-1
- https://integrate.toq.io/reference/notifyproductchanges
- https://integrate.toq.io/reference/resendotp-1
- https://integrate.toq.io/reference/savetransfer-1
- https://integrate.toq.io/reference/searchbeneficiaries-1
- https://integrate.toq.io/reference/sendemailnotification-1
- https://integrate.toq.io/reference/synctransactions-1
- https://integrate.toq.io/reference/synctransactionstatus-1
- https://integrate.toq.io/reference/synctransactionstatus_1-1
- https://integrate.toq.io/reference/updateaccount-1
- https://integrate.toq.io/reference/updatebeneficiary-1
- https://integrate.toq.io/reference/updateenduser-1
- https://integrate.toq.io/reference/updateenduserdirectors-1
- https://integrate.toq.io/reference/updatelenderconfiguration-1
- https://integrate.toq.io/reference/updatelendingrequest-1
- https://integrate.toq.io/reference/updatemeawalletapiconfig-1
- https://integrate.toq.io/reference/validatecompany-1
- https://integrate.toq.io/reference/verifybeneficiarycompany
- https://integrate.toq.io/reference/webhook_3-1
- https://integrate.toq.io/reference/webhook_4-1