Replies: 1 comment 7 replies
-
I'm nearly certain that "Shipments" was part of the old v2 API. In V3, you find shipping related data against the transaction attached to the Receipt. Receipt > transactions[] > transaction > shipping method (other stuff) |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm making a request to get the recipe data using the getShopReceipt method. According to the documentation I should receive such array:
"shipments": [ { "receipt_shipping_id": 1, "shipment_notification_timestamp": 946684800, "carrier_name": "string", "tracking_code": "string" } ],
In Etsy seller cabinet this data is exist, but in getShopReceipt I getting only:
{"receipt_id":1316170236, ... "shipments":[{}], ... }
or
{"receipt_id":1316170236, ... "shipments":[{},{}], ... }
I get same empty data for all reciepts.
Beta Was this translation helpful? Give feedback.
All reactions