This operation is in Beta and not ready for production integration.
Arguments
Copy
Ask AI
mutation initiateBankTransfer($initiateBankTransferInput: InitiateBankTransferInput!) {
initiateBankTransfer(initiateBankTransferInput: $initiateBankTransferInput) {
bankTransferResponse {
processorResponseCode
timestampUtc
transactionId
paymentId
duration
activityDate
isDuplicateRequest
tokenDetails {
tokenizedPan
token
}
}
errors {
... on InternalServiceError {
message
dateTimeUtc
errorDateTime
transactionId
processorResponseCode
}
... on AcceptorNotFoundError {
message
unknownAcceptorId
presenterId
organizationId
processorResponseCode
dateTimeUtc
errorDateTime
transactionId
}
... on RuleInViolationError {
message
advice
explanationOfRule
ruleName
processorResponseCode
dateTimeUtc
errorDateTime
transactionId
}
... on TimeoutOnNetworkResponseError {
message
waitTime
attemptedNetwork
processorResponseCode
dateTimeUtc
errorDateTime
transactionId
}
... on ValidationFailureError {
message
transactionId
dateTimeUtc
errorDateTime
processorResponseCode
fieldPath
fieldName
valueInError
}
... on TokenNotFoundError {
message
processorResponseCode
dateTimeUtc
errorDateTime
transactionId
}
... on InvalidTokenError {
message
deTokenizedPaymentMethodType
expectedPaymentMethodType
processorResponseCode
dateTimeUtc
errorDateTime
transactionId
}
... on RouteNotFoundError {
message
paymentBrand
boardedPaymentBrandsForAcceptor
processorResponseCode
dateTimeUtc
errorDateTime
transactionId
}
}
}
}
Response
Returns a InitiateBankTransferPayloadCopy
Ask AI
{
"data": {
"initiateBankTransfer": {
"bankTransferResponse": BankTransferResponse,
"errors": [
InternalServiceError
]
}
}
}