Help with HTTP url

Hello guys! I have this HTTP url:

local FavoriteItems  = {2,8,9,10,11,12,13,17,18,19,21,24,27,28,29,30,31,32,34,38,40,41,42,43,44,45,46,47,62,64,65,66,67,68,69,70,71,72}
local FavoritesList = table.concat(FavoriteItems, ",")
local url = "https://www.roproxy.com/users/favorites/list-json?assetTypeId="..FavoritesList.."&itemsPerPage=100&userId=".. UserId,

however I don’t think I can just shove a table in like i would be able to for a normal http request because of the “assetTypeId=” requirement. How would i change “assetTypeId=” to just “assetType=” so that I am able to just shove a table in like how I’m doing (To limit the requests) ?

Right now the data is just: “AssetType does not exist.”

Use _ to seperate instead of table then to string.split

The issue is that AssetTypeId needs a number and I’m feeding it a string but I can’t concat a table or number with a string so it has to be a string

Have you tried looking at the Roblox API docs to see if the method you are describing is possible? If it’s not, then you will have to make individual requests for each item of the table.

I used an AssetType (not assetypeid) method for getting their inventory so i assume its possible but the roblox api sucks and is extremely hard to find any information on literally anything related to getting player info