How to send trade with python requests?

So I was recently looking at the Trades API from roblox itself (https://trades.roblox.com/docs#!/Trades/post_v1_trades_send), and tried using /v1/trades/send, but when I saw the example:
{
“offers”: [
{
“userId”: 0,
“userAssetIds”: [
0
],
“robux”: 0
}
]
}
I didn’t understand how to choose which items I would give and which ones I would recieve. I would really like someone to give an example of how it should look like.

4 Likes

Just include another table like this in offers table for the receiver.

{“userId”: 0,“userAssetIds”: [0],“robux”: 0}