MngGetPropChallengeMetrics¶
Returns metric snapshots for a prop challenge, newest first.
Access¶
SESSION_MANAGER, SESSION_ADMIN, SESSION_DEALER, SESSION_CRM_MANAGER, SESSION_CRM_ADMIN.
Request Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
id |
int | Yes | Challenge id |
limit |
int | No | Default 100, max 1000 |
offset |
int | No | Default 0 |
Request¶
{
"command": "MngGetPropChallengeMetrics",
"extID": "1",
"data": {
"id": 1,
"limit": 100,
"offset": 0
}
}
Response Data¶
{
"rows": [
{
"id": 100,
"challenge_id": 1,
"account_login": 2000100,
"balance": 100000,
"equity": 104500,
"profit_target": 4.5,
"daily_loss": 0,
"total_loss": 0,
"trading_days": 3,
"created_time": 1778163600
}
]
}