cancel
Showing results for 
Search instead for 
Did you mean: 

Invoice Description field?

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?

 

 

nbennett25
Member
4 REPLIES 4

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

RichaSingh
Authorize.Net Developer Authorize.Net Developer
Authorize.Net Developer

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" } }

 

https://developer.authorize.net/api/reference/index.html

Apurva
Member

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" } }

 

https://developer.authorize.net/api/reference/index.html

Apurva
Member

I'm having the exact same problem on my website https://www.slotenmakergerard.nl thats why ive changed from magento to wordpress...

JonathanJJ
Member