0

I have a merchant account on Google checkout. I can view all the orders buyers put when I log on to https://checkout.google.com/sell/orders. From there, I can search for a specific order number and view details about it.

I want to do the same programmatically, but after looking through the checkout API I can not find anything related to this issue. Basically my input will be an order number and the output I want will be details regarding that ordre, or at least a boolean indicating whether that order exists or not.

Kara
  • 6,115
  • 16
  • 50
  • 57
user1657624
  • 203
  • 3
  • 8

1 Answers1

0

One option is to use the Order Report API to download a list of Google Checkout orders into a CSV file, then search localy. You are limited to the last 31 days.

https://developers.google.com/checkout/developer/Google_Checkout_XML_API_Order_Report_API

Mihai Ionescu
  • 2,108
  • 1
  • 12
  • 15