Get RFQ User Info
Return account and identity information.
Endpoint
block/rfqs/get_user_info
Parameters
No parameters required.
Request Example
{
"rid": 12345,
"method": "block/rfqs/get_user_info",
"params": {}
}
Response
| Name | Type | Description |
|---|---|---|
| uid | long | Signalplus UID |
| accounts | Array of object | Array of account objects |
| > accountId | long | Signalplus account ID, null for taker |
| > identity | string | User RFQ identity |
| > maker | boolean | Whether user is a maker or not |
Response Example
{
"rid": 12345,
"result": {
"uid": 10000045,
"accounts": [
{
"accountId": 10003878,
"identity": "SpTest2",
"maker": true
},
{
"accountId": 0,
"identity": "duplicate_test_1758872672048",
"maker": false
}
]
}
}