Skip to main content
This operation is in Beta and not ready for production integration.
Initiate a bank transfer transaction.

Arguments

initiateBankTransferInput
required
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 InitiateBankTransferPayload
{
  "data": {
    "initiateBankTransfer": {
      "bankTransferResponse": BankTransferResponse,
      "errors": [
        InternalServiceError
      ]
    }
  }
}
Run in Playground