2012-07-17 71 views
1

我不確定descriptionlineitem之間有什麼區別。訂單項是以逗號分隔的產品購買清單嗎?我想知道變量的最大長度和數據類型。此外,想知道用戶信用卡聲明,說明或lineitem中出現了哪些字段。不能找到任何好的文檔。Authorize.Net AIM行項目和描述之間的區別

回答

0

描述是您對交易的描述。它可以是「第一次訂閱付款」或「退還交易#123456」。它可能最多255個字符(無符號)。有關更多信息,請參閱AIM guide的第24頁。

訂單項用於添加用戶購買的每件商品或服務。這包括名稱,價格,數量等。基本上,您可以記錄購買的內容。行項目具有以下格式:

x_line_item 
Optional 
Value: Any string 
Format: Line item values must be delimited by a bracketed pipe <|> 
Itemized order information 

Item ID<|> 
The ID assigned to an item. 
Format: Up to 31 characters 

<|>item name<|> 
A short description of an item. 
Format: Up to 31 characters 

<|>item description<|> 
A detailed description of an item. 
Format: Up to 255 characters 

<|>itemX quantity<|> 
The quantity of an item. 
Format: Up to two decimal places 
Must be a positive number 

<|>item price (unit cost)<|> 
Cost of an item per unit, excluding tax, freight, and duty. 
Format: Up to two decimal places 
Must be a positive number 
The dollar sign ($) is not allowed when submitting delimited information. 

<|>itemX 
taxable 
Indicates whether the item is subject to tax. 
Format: TRUE, FALSE, T, F, YES, NO, Y, N, 1, 0 

也不需要對將要處理的交易或出現在客戶的信用卡對賬單。兩者都允許您在Authorize.Net帳戶中更好地組織您的交易。

相關問題