Releases: etsy/open-api
Releases · etsy/open-api
3.0.0 General Release 2022-05-20
Changes
- Added the product_data array to endpoints:
getShopReceipts
,getShopReceiptTransaction
,getShopReceiptTransactions
. (See #476)
3.0.0 General Release 2022-05-11
Changes
- Fixed review endpoints to ensure that the
review
value is always returned as a string. When null, it will be an empty string. See #470
3.0.0 General Release 2022-05-10
Changes
- Fixed (hopefully) an issue where repeated updates across multiple listings to the listing images resulted in incorrect URL being returned for the newly uploaded image. See #457
- Added
created_timestamp
andupdated_timestamp
fields to all endpoints that don't have those exact names. Some endpoints have different names, so we standardizing on these two fields for naming convention. Alternative names will later be deprecated. See #399
3.0.0 General Release 2022-05-06
Changes
- Added
Inventory
as a valid value forincludes
ongetListing
andgetListingsByListingIds
endpoint. See #236 . - Fixed issue with SKUs returning as numbers/integers instead of strings when SKU value only has numbers. See #464 .
- Fixed issue with
count
being return as 0 whenlimit
is 1 and there exists an exact match to the shop search name. See #460 .
3.0.0 General Release 2022-04-27
Changes
- Adding product variations data to transactions object of the
getShopReceipt
endpoint. The transaction object now has a "product_data" array that will include the property values. - Fixed issue where shipping profile destinations for RU, BY and IR were still being created even though the OpenAPI endpoint returned that the country was unsupported.
- Fixed issue where shipping profile destination country "AX" was not showing the label for the country in the Etsy UI.
- Added SKUs and production partners to the
findAllActiveByShop
endpoint.
3.0.0 General Release 2022-04-26
Changes
- Modified
getUserAddress
to return a valid response. Was still set to return as "not yet implemented"
Additions
- New endpoint
deleteUserAddress
to delete user addresses.
3.0.0 General Release 2022-04-21
Changes
- Fixed the
count
value in thefindShops
endpoint - Fixed some documentation issues
3.0.0 General Release 2022-04-15
Changes
- Added
note_to_buyer
field to thecreateReceiptShipment
endpoint (here). This message will be added to the notification email that is sent when the shipment information is submitted. This is the same as adding a note to the shipment in the Etsy UI.
3.0.0 General Release 2022-04-14
Changes
- Fixed bug where
updatingListing
would result in an error about the price being too low when the formatted currency on the listing contains a comma, such as VND, but only when taxonomy_id is included.
Added
- Created new endpoint
updateShopSection
. This is a shop owner endpoint that will allow your app to update the names on shop sections. - Created new endpoint
deleteShopSection
. This is a shop owner endpoint that will allow your app to delete any section for the shop that is not currently in use by any listings.
3.0.0 General Release 2022-04-11
Changes
- Fixed bug where searching for shops would result in one more return than requested by the
limit
value. (#402) - Added
is_taxable
to getListing and other listing response objects (opposite value to non_taxable) as we are standardizing onis_taxable
. Thenon_taxable
field will be removed some time in the future.
Added
- Created new endpoint
getReviewsByListing
. This is a public endpoint that will return reviews for a given listing (without any buyer or transaction info). #188