How do i sent an Array in a JSON POST body without key value pair?

I basically just need to send an array like this

["a", "b", "c", "d", "e"]

But it wants me to map it to something like

"data": ["a", "b", "c", "d", "e"]

If i don't map it to anything than nothing shows.

I can only send an array to this API and nothing else.

Can anyone point me in the right direction?

Thanks

Hi @tim_fully, Welcome!

I believe you want to use the "Raw" body type. Check out this doc for more information

https://docs.retool.com/docs/api-requests#querying-a-rest-api

Thanks Matt!

Raw body and content-type set to json

Cheers!