We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey there, I was wondering how to parse the response from the createCustomerProfileTransaction request. The response I'm getting is
createCustomerProfileTransaction
{ '$': { 'xmlns:xsi': 'http://www.w3.org/2001/XMLSchema-instance', 'xmlns:xsd': 'http://www.w3.org/2001/XMLSchema', xmlns: 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' }, messages: { resultCode: 'Ok', message: { code: 'I00001', text: 'Successful.' } }, directResponse: '1,1,1,This transaction has been approved.,RS7XSG,Y,2226525593,,,20.25,CC,auth_only,,Sean,Hill,,THE ADDRESS,THE PHONE NUMBER,,[email protected],,,,,,,,,,,,,,7387E8D182EE544B82A4AC96334F4D63,,2,,,,,,,,,,,XXXX4242,Visa,,,,,,,,,,,,,,,,' }
I would like the transaction id out of this, which I believe is 2226525593. Do I just need to run some crazy regex like
2226525593
directResponse.match(/\d\d\d\d\d\d\d\d\d\d/)
?
Thanks for any help
The text was updated successfully, but these errors were encountered:
I would personally just split it by , I'll look into what the fields look like hopefully soon thanks 👍
,
Sorry, something went wrong.
And sorry for the late reply, github just sent me an email today :/
No branches or pull requests
Hey there, I was wondering how to parse the response from the
createCustomerProfileTransaction
request. The response I'm getting isI would like the transaction id out of this, which I believe is
2226525593
. Do I just need to run some crazy regex like?
Thanks for any help
The text was updated successfully, but these errors were encountered: