我正在使用付款表格和方形交易api检索付款,但未显示在方形仪表板中。有没有简单的方法可以将目录项添加到我已经编写的事务api代码中?
我可以简单地将链接添加到request_body数组下的新订单项吗?
$request_body = array (
"card_nonce" => $nonce,
)
$txRequest['item_id'] = "my item id";
如果有人有教程,将不胜感激。
答案 0 :(得分:1)
我知道了。 我必须使用订单api创建和订购,然后将order_id传递给费用代码。在PHP中看起来像这样。
.......create order here using orders api(code not shown)......
...pass order_id to charge(in php)...
mix of variables for nonce, etc...
............
$request_body = array (
"card_nonce" => $nonce,
"buyer_email_address" => $be,
"note" => "online Laser Tag reservation",
"amount_money" => array (
"amount" => $totalCost,
"currency" => "USD")
"order_id" => $my_order_id,
"idempotency_key" => uniqid()
};
...try/catch statements...
答案 1 :(得分:0)
您将要使用CreateOrder
创建项目顺序。然后,您可以将order_id
传递到Transactions
API(付款表单后用来调用Charge
端点的内容)。看到这里:https://docs.connect.squareup.com/payments/transactions/cookbook/itemize-transactions