如何从Paypal V2 API中找到交易ID?我想为交易者提供交易ID,以跟踪他们的交易。
我可以获取订单ID和捕获ID,但是找不到在哪里找到交易ID。仅不推荐使用的V1 API可以获取事务ID。 V2不再可用吗?
仅供参考,V1的答案是Paypal Transaction ID
答案 0 :(得分:0)
In the PayPal V2 API, there are three APIs are normally associated:
1) Create authorization - https://developer.paypal.com/docs/api/overview/#authentication-and-authorization
2) Create order - https://developer.paypal.com/docs/api/orders/v2/#orders_create
3) Capture order - https://developer.paypal.com/docs/api/orders/v2/#orders_capture
You can get the Transaction ID from this API response. It should be under
"payments": {
"captures": [
{
"id": "3C679366HH908993F",
答案 1 :(得分:0)
API调用者永远不会共享收据中发送给买方的交易ID。 卖方有自己的捕获/授权ID 买方拥有自己的捕获/授权ID
如果要使用公共跟踪标识符,可以填充invoice_id吗?
很好奇我打算使用>>我想给交易ID以便买方跟踪他们的交易。 >>您可以详细说明一下吗。