py-authorize
py-authorize copied to clipboard
refund with invoice number
I'd like to refund with invoice number. current refund parameters is
{
'amount': 1.11,
'last_four': '1111',
'transaction_id': '401123211',
}
it works but it makes transaction with null invoice number that makes hard to trance down transactions. I'd like to make request like
{
'amount': 1.11,
'last_four': '1111',
'transaction_id': '401123211',
'invoice_number': 'XX111122',
}
Related PR #76