如何从Paypal V2接口中找到交易ID?我想给买家的交易ID,以跟踪他们的交易。
我可以获取订单ID和采集ID,但是在哪里找不到交易ID,只有废弃的V1接口才能获取交易ID,是不是V2已经不提供了?
仅供参考,V1的答案在这里Paypal Transaction ID
发布于 2019-05-24 17:54:32
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",发布于 2019-08-29 13:46:52
API调用者永远不会共享收据中发送给买方的交易ID。卖方有自己的捕获/授权id买方有自己的捕获/授权id
如果要使用通用跟踪标识符,可以填充invoice_id?
只是好奇如何使用>>的意图,我想给买家的交易ID来跟踪他们的交易。>>,你能详细解释一下吗?
https://stackoverflow.com/questions/56164880
复制相似问题