POST
/
api
/
bot-accounts
Create Account
curl --request POST \
  --url https://api.example.com/api/bot-accounts

Request Body

{
  "username": "botuser1",
  "password": "mypass123",
  "email": "bot@email.com",
  "authToken": "abc123",
  "totpSecret": "JVMG5SZ4FGMCEUKP",
  "registrationYear": "2019"
}
FieldTypeRequired
usernamestringYes
passwordstringYes
emailstringNo
authTokenstringNo
totpSecretstringNo
registrationYearstringNo

Response

{
  "account": {
    "id": "acc-abc12345",
    "username": "botuser1",
    "status": "inactive",
    ...
  }
}