Body Required

  • disable_reset integer(int32)
  • disable_reinstall integer(int32)

Body Required

  • disable_reset integer(int32)
  • disable_reinstall integer(int32)

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • success boolean Required

      Indicates whether or not the command was successful or not.

    • text string

      Text associated with the response.

    • action string

      Optional Action relating to the response.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code string Required
    • message string Required
POST /account/features
curl \
 --request POST 'https://my.interserver.net/apiv2/account/features' \
 --header "X-API-KEY: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"disable_reset":1,"disable_reinstall":1}'
curl \
 --request POST 'https://my.interserver.net/apiv2/account/features' \
 --header "X-API-KEY: $API_KEY" \
 --header "Content-Type: multipart/form-data" \
 --form "disable_reset=1" \
 --form "disable_reinstall=1"
Request examples
{
  "disable_reset": 1,
  "disable_reinstall": 1
}
Response examples (200)
{
  "text": "Ok",
  "success": true
}
Response examples (401)
{
  "code": "string",
  "message": "string"
}