Skip to main content

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

FieldTypeRequiredDescription
sGroupIdstringnoFilter by 13-char group id.

Response 200

{
"pausedBots": [
{ "_id": "...", "sGroupId": "...", "eStatus": "2", "bIsPaused": true }
]
}

Errors

StatusMeaning
400sGroupId malformed.

Example

curl -H "Authorization: Bearer $ACCESS" -H "x-user-id: $USER_ID" \
"$BASE_URL/flexi/paused"