Sending an array of strings in an HTTP Request

Hey Make Community!

I’ve been struggling to get the final piece of my most recent project working.

I’m trying to work with the Deviant Art API (Developers | DeviantArt), and I’ve got just about everything working. The issue I’m running into is with providing the tags in the API call. There’s two areas I can do this on these calls:

Here is the workflow I’ve been testing it on:

Ideally I’d just do it in the first submit module, and remove the edit module, but I was doing it this way for testing to avoid creating endless posts. Here is my current Stash submit request:


Basically, everything but the tags is working perfectly. What I believe to be the problem is that the API needs an array of strings, and the HTTP module is converting the “array” into a string. I’m assuming I’ll need to use a raw Json request as the form only accepts files or text, but after hammering my head against this and trying to use ChatGPT I haven’t been able to get the request to work, even when only trying to do the title (which works fine as a multipart form).

Thanks for any help you guys can provide.