NastyCore
(NastyCore)
January 27, 2021, 4:17pm
#1
According to the trade V1 send api(“https://trades.roblox.com/docs#!/Trades/post_v1_trades_send ”) the data format is as it follows:
{
"offers": [
{
"userId": 0,
"userAssetIds": [
0
],
"robux": 0
}
]
}
I’m assuming if I put the trade opponent’s userid, and the userassetid of the limited I’ll be sending and the same for robux, I would offer bunch of limiteds but won’t be able to request any.
Can anyone clarify the usage of this API?
Aegians
(Aegian)
January 27, 2021, 4:40pm
#2
The ROBLOX API documentation isn’t very clear. Your best bet is to ask a bot developer or web engineer.
1 Like
C001D3V
(Noobies)
January 27, 2021, 6:03pm
#3
I guess Trade Hangout might use this, If they don’t they might in the future?
1 Like
xBugraSins
(Midnight)
February 17, 2021, 6:53am
#4
am using this api
{
offers: [
{
userId: trader_id,
userAssetIds: [items_want],
robux: 0,
},
{
userId: YOUR_ID,
userAssetIds: [ur items],
robux: 0,
},
],
}
``
1 Like