GET /flexi/paused
List bots paused by the client (still in RUNNING state but not
executing swaps).
Paused bots keep their balance; no funds are returned to the user.
Use case
Surface which bots are currently on hold so you can resume them selectively.
Query params
| Field | Type | Required | Description |
|---|---|---|---|
sGroupId | string | no | Filter by 13-char group id. |
Response 200
{
"pausedBots": [
{ "_id": "...", "sGroupId": "...", "eStatus": "2", "bIsPaused": true }
]
}
Errors
| Status | Meaning |
|---|---|
400 | sGroupId malformed. |
Example
curl -H "Authorization: Bearer $ACCESS" -H "x-user-id: $USER_ID" \
"$BASE_URL/flexi/paused"