I'm building integration with Clover and want to make a charge with ACH.
1. I made request to https://token-sandbox.dev.clover.com/v1/tokens to get ACH token:
Response:
"id" : "clv_1TSTSLRAizXWyRLjWuW6NHW8" ,
"object" : "token" ,
"ach" : {
"account_last4" : "7891" ,
"routing_last4" : "6789"
}
}
2. I made request to https://scl-sandbox.dev.clover.com/v1/charges to make a charge with ACH token.
Request :
"ecomind" : "ecom" ,
"metadata" : {
"existingDebtIndicator" : false
},
"amount" : 243500 ,
"currency" : "usd" ,
"source" : "clv_1TSTSLRAizXWyRLjWuW6NHW8"
}
Response :
"message" : "500 Internal Server Error" ,
"error" : {
"code" : "processing_error" ,
"message" : "Internal Server Error."
}
}
Will be grateful for your help!