Create new listings on Etsy #1480
YamunaSri
started this conversation in
Show and tell
Replies: 1 comment
-
|
Hi there, could you provide a listing ID as an example so we could reproduce this issue? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I’m working with the Etsy API to create and manage listings. I’m facing an issue where my listing shows the message “Sorry, this item is unavailable” on Etsy.com, even though:
"state": "active")readiness_state_idmatches the only valid one from the shop’s readiness states (ready_to_ship)However, when I query the listing via the API:
"images": null"inventory": nullI have verified via the following endpoints:
GET /application/shops/{shop_id}/listings/{listing_id}/imagesreturns[](empty array)GET /application/listings/{listing_id}/inventoryreturnsnullor emptyI’ve tried re-uploading images using the exact listing ID and re-posting inventory without
product_idoroffering_idfields, but the data still doesn’t appear linked.Could anyone advise if there’s a known delay or additional steps required to properly link images and inventory to a listing? Or any tips on how to debug this?
Thanks in advance!
API calls I’m using:
Upload images:
POST /application/shops/{shop_id}/listings/{listing_id}/imagesUpdate inventory:
PUT /application/listings/{listing_id}/inventorySet readiness state:
PUT /application/listings/{listing_id}with{ "readiness_state_id": xxxxx }Additional info:
Would appreciate any pointers!
Beta Was this translation helpful? Give feedback.
All reactions