Problems uploading image to Etsy

Im trying to make a scenario to add a listing to Etsy. When I run it, I get the error:

Expected int value for ‘image_ids’ (got string)

I tried many things in Image ID field in Etsy. Ive put an image url, Ive embedded an image in Google sheets, I used HTTP and got a file url and I tried Google Drive for the image. I keep getting this same error.

When I put no image in there and run it, I get a generic error message so I assume it won’t publish a listing with out an image.

Can anyone help me on what to put into the Image ID field to get it to upload and publish? thanks

Welcome to the Make community!

You have not yet provided sufficient information to demonstrate the problem that would allow us to reproduce the scenario and any error(s).

To allow others to assist you with your scenario, please provide the following:

1. Relevant Screenshots

Could you please share screenshots of your full scenario? Also include screenshots of any error messages, module settings (fields), relevant filter settings (conditions), and module output bundles. We need to see what you’re working with to give you the best advice.

You can upload images here using the Upload icon in the text editor:

We would appreciate it if you could upload screenshots here instead of linking to them outside of the forum. This allows us to zoom in on the image when clicked, and prevent tracking cookies from third-party websites.

2. Scenario Blueprint

Please export the scenario blueprint. Providing your scenario blueprint file will allow others to quickly recreate and see how you have set up the mappings in each module, and also allows us take screenshots or provide module exports of any solutions we have for you in return - this would greatly benefit you in implementing our suggestions as you can simply paste module exports back into your scenario editor!

To export your scenario blueprint, click the three dots at the bottom of the editor then choose ‘Export Blueprint’.

You can upload the file here by clicking on this button:

3. Output Bundles of Modules

Please provide the output bundles of each of the relevant modules by running the scenario (you can also get this without re-running your scenario from the History tab).

Click on the white speech bubbles on the top-right of each module and select “Download input/output bundles”.

A. Upload as a Text File

Save each bundle contents in a plain text editor (without formatting) as a bundle.txt file.

You can upload the file here by clicking on this button:

B. Insert as Formatted Code Block

If you are unable to upload files on this forum, alternatively you can paste the formatted bundles.
These are the two ways to format text so that it won’t be modified by the forum:

  • Method 1: Type code block manually

    Add three backticks ``` before and after the content/bundle, like this:

    ```
    content goes here
    ```

  • Method 2. Highlight and click the format button in the editor

Providing the input/output bundles will allow others to replicate what is going on in the scenario, especially if there are complex data structures (nested arrays and collections) or if external services are involved, and help you with mapping the raw property names from collections.

Sharing these details will make it easier for others to assist you.

blueprint.json (29.6 KB)
Etsy input bundle - there was no output bundle.txt (743 Bytes)
Google drive output bundle.txt (5.3 KB)

ok thanks for heads up. Ill try this agin:

So I have a scenario that starts with Google Sheet for info for the Etsy listing. Then I use Google Drive for the image for the Etsy ad. Then when I link the image from Google Drive to my image ID, I get the error : Expected int value for ‘image_ids’ (got string)

I put screenshots to show my Google Drive in the scenario. I put a screen of the Etsy part of the scenario where it links to the Google drive and I put the error message. I also added the output bundle for Google Drive and the input bundle for Etsy. There was no output bundle for Etsy since it didnt publish anything. I also added the blueprint.

I hope this is enough to help tell me why I cant upload the image or publish the Etsy listing. thanks!



Hi Joe.

Etsy doesn’t know anything about Google Drive IDs. The Etsy Create a Listing module is looking for Etsy image IDs.

I’ve not tried it myself, but I think you need to use the Upload a Listing Image module for your specific listing, after the Create a Listing module.

Lastly, you’ll need to use the Update a Listing module to turn your draft listing into a published one.

You can read more in the Etsy API guide on creating listings. It’s a little technical as it’s aimed at API developers, but you should be able to get the gist.

thanks for the reply. That does make sense. I did do that. However now it gives a generic error message, see screenshot. So it probably isn’t the image that is the error but I don’t know what else is. Every other output and input stayed the same.

Just to check - you removed the Image IDs array, right?

The only other obvious thing I can see is that your Title string includes the “|” character, which seems to be prohibited in the Etsy API - see the title parameter on this page.

It looks like the Etsy API doesn’t provide a meaningful error message in this case.

If that is the cause of the error, then you’d be best using the replace() function with a suitable regex to strip/replace problem characters.

1 Like

Yeah I did remove the Image ID. Thanks for the tip on the | in the title. I will give that a try later.

This is great, i love it

1 Like