Hello - in the Authorize.net reporting, we're seeing an 'Invoice Description' field that is not being populated by our API call (Magento 2). I've tried adding 'x_description,' which is properly populating the Order description field, but adding 'x_invoice_description' doesn't seem to do anything.
What API request field should I be setting to properly populate the Invoice Description field in the Transaction Reporting?
05-23-2018 07:40 AM
Hi ,
Could you please share more details on which Invoice description field are you referring to in Authorize.net APIs ?
We have description for below fields
order
lineitem
tax
shipping
duty
Thanks,
Richa
07-23-2018 04:01 PM
Hi,
When you charge a card directly, you can add Invoice Number and Description
PHP:
// Create order information
$order = new AnetAPI\OrderType();
$order->setInvoiceNumber("10101");
$order->setDescription("Golf Shirts");
OR JSON:
"lineItems": { "lineItem": { "itemId": "1", "name": "vase", "description": "Cannes logo", "quantity": "18", "unitPrice": "45.00" } }
06-26-2020 01:53 AM
Hi,
When you charge a card through Authorize.net, you are able to add Invoice Number and Description as below
PHP:
// Create order information
$order = new AnetAPI\OrderType();
$order->setInvoiceNumber("10101");
$order->setDescription("Golf Shirts");
OR JSON
"lineItems": { "lineItem": { "itemId": "1", "name": "vase", "description": "Cannes logo", "quantity": "18", "unitPrice": "45.00" } }
06-26-2020 02:00 AM
I'm having the exact same problem on my website https://www.slotenmakergerard.nl thats why ive changed from magento to wordpress...
06-26-2020 06:59 AM