In Silverlake, I want to fetch all the credit cards associated with an account number. Is there any provided operation to do so?
I have checked Credit Card Account Search https://jackhenry.dev/open-enterprise-api-docs/enterprise-soap-api/api-reference/card-services/crcardacctsrch/
Here you can search credit cards with last name, phone number or state code, but not account number.
For ETF cards, we have the operation to search with account id https://jackhenry.dev/open-enterprise-api-docs/enterprise-soap-api/api-reference/card-services/eftcardsrch/ . I am looking for same for credit cards.
Long story short, I have an account number and I want to fetch all credit cards associated with that. How to do so? This is my main query.
Also, if someone can provide example lastName/phoneNumber for which I will get good response. I have tried few but getting '404 Not Found'. I have even tried with "where last name contains 'a'" but still same response.
I am trying on test environment of Silverlake
URL: https://jxdmz.Jackhenry.com/jxchange/2008/ServiceGatewa/CrCard.svc Operation: CrCardAcctSrch Query: Where lastName contains 'a'
Expectation: Getting some response Getting: 404
The CrCardAcctSrch operation can only be used search via the following elements -
You will want to look at the CrCardAcctInq operation to find the card for a specific account. The FAQ section for CrCardAcctInq has more info on how to search, here's the copy/paste -
Also you're running into a second problem with the JX URL that you're pointed at. That URL for the DMZ instance you're using will always be https://jxdmz.jackhenry.com/jxchange/2008/ServiceGateway/ServiceGateway.svc. The hostname might change depending on which environment you're in, but the format will always be the same for JX service gateway integrations. Changing that URL will result in the 404 error that you're running into.