2017-04-17 30 views
0

我正在編寫一個包裝來檢查Square Connect API V2的事務數據。我能夠通過缺少訂單數據來檢索交易。 我使用所有的交易和檢索事務處理API得到如下回應:如何獲取使用Connect V2的交易的Order和OrderLineItem?

{ 
    "transactions": [ 
    { 
     "id": "mYziFkYv2QK7e2kb2vyIhegeV", 
     "location_id": "75S3K9Z9KSVYK", 
     "created_at": "2017-04-17T11:00:51Z", 
     "tenders": [ 
     { 
      "id": "2qeDw6CmCs299m9w0RY7KQB", 
      "location_id": "75S3K9Z9KSVYK", 
      "transaction_id": "mYziFkYv2QK7e2kb2vyIhegeV", 
      "created_at": "2017-04-17T11:00:51Z", 
      "amount_money": { 
      "amount": 10000, 
      "currency": "INR" 
      }, 
      "processing_fee_money": { 
      "amount": 0, 
      "currency": "INR" 
      }, 
      "type": "OTHER" 
     } 
     ], 
     "product": "REGISTER", 
     "client_id": "75S3K9Z9KSVYK-a776-4377-84f5-75S3K9Z9KSVYK" 
    }, 
    { 
     "id": "UJsg9IdIv9WWvqT1h2VkbxgeV", 
     "location_id": "75S3K9Z9KSVYK", 
     "created_at": "2017-04-17T11:00:37Z", 
     "tenders": [ 
     { 
      "id": "UVuQghb8RTF8OUcmAsaXKQB", 
      "location_id": "75S3K9Z9KSVYK", 
      "transaction_id": "UJsg9IdIv9WWvqT1h2VkbxgeV", 
      "created_at": "2017-04-17T11:00:37Z", 
      "amount_money": { 
      "amount": 0, 
      "currency": "INR" 
      }, 
      "processing_fee_money": { 
      "amount": 0, 
      "currency": "INR" 
      }, 
      "type": "NO_SALE" 
     } 
     ], 
     "product": "REGISTER", 
     "client_id": "75S3K9Z9KSVYK-a751-4434-a041-75S3K9Z9KSVYK" 
    } 
]} 

有沒有什麼辦法讓訂單(訂單項)的詳細信息?

回答

相關問題