- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Is there a way to import or use Rest JSON call to create new ACH payment methods under customer accounts in Zuora?
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Answer:
Yes, it’s possible to create a new ACH payment method under customer accounts in zuora using REST API.
The following Tags are must be required when to create an ACH payment Method and the label as same as below.
**AccountId,AchAbaCode,AchAccountName,AchAccountNumber,AchAccountType,AchBankName and Type**
Request:
Step 1:
API Sandbox: _POST_ https://rest.apisandbox.zuora.com/v1/object/payment-method
Production:
_POST_ https://rest.zuora.com/v1/object/payment-method
Step 2:
Body of the content:
{
"AccountId": "2c92c0f866f738ac016706770efa24fc",
"AchAbaCode" : "121181976",
"AchAccountName" : "Antony",
"AchAccountNumber" : "123456789",
"AchAccountType" : "Checking",
"AchBankName" : "Washington Bank" ,
"Type": "ACH"
}
Response:
{
"Success": true,
"Id": "2c92c0f96a58497e016a67ce0da76333"
}
Once the API response got success, please look into the account the ACH Payment method will be updated.
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Answer:
Yes, it’s possible to create a new ACH payment method under customer accounts in zuora using REST API.
The following Tags are must be required when to create an ACH payment Method and the label as same as below.
**AccountId,AchAbaCode,AchAccountName,AchAccountNumber,AchAccountType,AchBankName and Type**
Request:
Step 1:
API Sandbox: _POST_ https://rest.apisandbox.zuora.com/v1/object/payment-method
Production:
_POST_ https://rest.zuora.com/v1/object/payment-method
Step 2:
Body of the content:
{
"AccountId": "2c92c0f866f738ac016706770efa24fc",
"AchAbaCode" : "121181976",
"AchAccountName" : "Antony",
"AchAccountNumber" : "123456789",
"AchAccountType" : "Checking",
"AchBankName" : "Washington Bank" ,
"Type": "ACH"
}
Response:
{
"Success": true,
"Id": "2c92c0f96a58497e016a67ce0da76333"
}
Once the API response got success, please look into the account the ACH Payment method will be updated.
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √