PUT
/
api
/
bot-accounts
/
:id
Update Account
curl --request PUT \
  --url https://api.example.com/api/bot-accounts/:id

Path Parameters

ParameterDescription
idAccount ID

Request Body

{
  "password": "newpass123",
  "email": "newemail@example.com",
  "authToken": "newtoken"
}
All fields are optional — only included fields are updated.

Response

{
  "account": {
    "id": "acc-abc12345",
    "username": "botuser1",
    ...
  }
}
Platform accounts (isPlatform: true) cannot be modified.