I'm using braintree for payment processing and I'm trying to get Processor Response Codes from Braintree with Ruby.
Here is my code :
verification = result.credit_card_verification
response_code = verification.try(:processor_response_code)
I'm getting verification as nil even when there is error.
Is there something else to get Processor Response Codes?
I got this code from here
Here is my result.erros :
:errors: !ruby/object:Braintree::Errors
errors: !ruby/object:Braintree::ValidationErrorCollection
errors: []
nested:
:customer: !ruby/object:Braintree::ValidationErrorCollection
errors: []
nested:
:credit_card: !ruby/object:Braintree::ValidationErrorCollection
errors:
- !ruby/object:Braintree::ValidationError
code: '81707'
attribute: cvv
message: CVV must be 4 digits for American Express and 3 digits for
other card types.
- !ruby/object:Braintree::ValidationError
code: '81713'
attribute: expiration_year
message: Expiration year is invalid.
- !ruby/object:Braintree::ValidationError
code: '81703'
attribute: number
message: Credit card type is not accepted by this merchant account.
- !ruby/object:Braintree::ValidationError
code: '81715'
attribute: number
message: Credit card number is invalid.
nested:
:billing_address: !ruby/object:Braintree::ValidationErrorCollection
errors: []
nested: {}
I work at Braintree. If you'd like more help than you can get here on Stack Overflow, please reach out to our support team.
Handling Braintree result objects is progressive.
If
result.success?
isfalse
, then you check forresult.errors
, which represent validation errors.If
result.errors
isnil
, then the request was valid. In this case, you will have atransaction
orverification
object just as ifresult.success?
wastrue
.You can then look at the
result.verification
'sstatus
,processor_response_code
,gateway_rejection_reason
, etc.The linked documentation provides more details on handling error results.