Skip to main content
POST
/
customer
/
{customerId}
/
uploadACHDebitAuthorizationPdf
Upload an ACH Debit Authorization PDF
curl --request POST \
  --url https://virtserver.swaggerhub.com/nickel-ace/apiv1/1.0.0/customer/{customerId}/uploadACHDebitAuthorizationPdf \
  --header 'Content-Type: application/json' \
  --data '
{
  "routingNumber": "<string>",
  "accountNumber": "<string>",
  "accountType": "checking",
  "fileId": "<string>",
  "memo": "<string>",
  "transactionLimitCents": 123,
  "expirationDate": "2023-12-25"
}
'
{
  "id": "<string>",
  "customerId": "<string>",
  "paymentMethod": {
    "id": "<string>",
    "type": "ACH",
    "achDetails": {
      "bankName": "JP Morgan Chase",
      "routingNumber": "<string>",
      "accountNumberLastFour": "<string>"
    },
    "cardDetails": {
      "brand": "visa",
      "last4": "<string>",
      "holderName": "<string>",
      "expMonth": "2",
      "expYear": "2030"
    },
    "billingDetails": {
      "name": "<string>",
      "companyName": "<string>",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "countryCode": "<string>"
    }
  },
  "transactionLimitCents": 123,
  "expirationDate": "2023-12-25",
  "active": true
}

Path Parameters

customerId
string
required

ID of the customer that needs to be fetched

Body

application/json

Create a new customer

routingNumber
string
required
accountNumber
string
required
accountType
enum<string>
required
Available options:
checking,
savings
fileId
string
required
memo
string
transactionLimitCents
integer<int64>
expirationDate
string<date>

Response

Successful operation

id
string
customerId
string
paymentMethod
object
transactionLimitCents
integer<int64>
expirationDate
string<date>
active
boolean