MngGetPropChallengeBreaches¶
Returns rule breaches 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": "MngGetPropChallengeBreaches",
"extID": "1",
"data": {
"id": 1,
"limit": 100,
"offset": 0
}
}
Response Data¶
{
"rows": [
{
"id": 15,
"challenge_id": 1,
"account_login": 2000100,
"rule_code": "MAX_TOTAL_LOSS",
"message": "Maximum total loss exceeded",
"payload_json": "{}",
"created_time": 1778163600
}
]
}