Skip to content

Latest commit

 

History

History
71 lines (43 loc) · 1.74 KB

EnrichmentsApi.md

File metadata and controls

71 lines (43 loc) · 1.74 KB

\EnrichmentsApi

All URIs are relative to https://api.basistheory.com

Method HTTP request Description
BankAccountVerify Post /enrichments/bank-account-verify

BankAccountVerify

BankAccountVerify(ctx).BankVerificationRequest(bankVerificationRequest).Execute()

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "./openapi"
)

func main() {
    bankVerificationRequest := *openapiclient.NewBankVerificationRequest("TokenId_example") // BankVerificationRequest | 

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    r, err := apiClient.EnrichmentsApi.BankAccountVerify(context.Background()).BankVerificationRequest(bankVerificationRequest).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `EnrichmentsApi.BankAccountVerify``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiBankAccountVerifyRequest struct via the builder pattern

Name Type Description Notes
bankVerificationRequest BankVerificationRequest

Return type

(empty response body)

Authorization

ApiKey

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]