1

我不确定description和之间有什么区别lineitem。订单项是否是以逗号分隔的已购买产品列表?我想知道变量最大长度和数据类型。此外,想知道用户信用卡对帐单、描述或订单项中出现的字段。找不到任何好的文档。

4

1 回答 1

0

描述是您对交易的描述。它可以是“首次订阅付款”或“交易 #123456 退款”之类的内容。它最多可包含 255 个字符(无符号)。有关详细信息,请参阅AIM 指南的第 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 帐户中更好地组织交易。

于 2012-07-18T03:26:14.423 回答