PATCH /smart-sell/resume
Resume paused Smart Sell bots.
Bot resumes reacting to incoming buys immediately.
Use case
Reactivate after a pause — e.g. liquidity returned, config validated.
Body
| Field | Type | Required | Description |
|---|---|---|---|
aBotIds | string[] | yes | Non-empty array of Smart Sell ObjectIds. |
Response 200
{ "message": "2 bot(s) resumed" }
Errors
| Status | Meaning |
|---|---|
400 | No paused bots matched. |
Example
curl -X PATCH "$BASE_URL/smart-sell/resume" \
-H "Authorization: Bearer $ACCESS" \
-H "x-user-id: $USER_ID" \
-H "Content-Type: application/json" \
-d '{ "aBotIds": ["<id1>"] }'