This is what I currently have:
axios(`https://trades.roblox.com/v1/trades/send`, {
method: 'POST',
headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': token, cookie: '.ROBLOSECURITY=' + process.env.COOKIE + ';' },
body: JSON.stringify({
offers: [
{
userId: id,
userAssetIds: send,
robux: 0,
},
{
userId: userid,
userAssetIds: recieve,
robux: 0,
},
],
}),
})
And this is the error I’ve got now:
Help!