Logcontrol CMB config for an account

Copy Markdown View Source

Update CMB config

POST /accounts/{account_id}/logs/control/cmb/config

Updates CMB config.

Responses

200 Update CMB config response

Data is at body["result"]

{
  "allow_out_of_region_access": "*boolean*",
  "regions": "*string*"
}

4XX Update CMB config response failure

{
  "errors": [
    {
      "code": "*integer*",
      "documentation_url": "*string*",
      "message": "*string*",
      "source": {
        "pointer": "*string*"
      }
    }
  ],
  "messages": [
    {
      "code": "*integer*",
      "documentation_url": "*string*",
      "message": "*string*",
      "source": {
        "pointer": "*string*"
      }
    }
  ],
  "result": {},
  "success": "*boolean*"
}

Get CMB config

GET /accounts/{account_id}/logs/control/cmb/config

Gets CMB config.

Responses

200 Get CMB config response

Data is at body["result"]

{
  "allow_out_of_region_access": "*boolean*",
  "regions": "*string*"
}

4XX Get CMB config response failure

{
  "errors": [
    {
      "code": "*integer*",
      "documentation_url": "*string*",
      "message": "*string*",
      "source": {
        "pointer": "*string*"
      }
    }
  ],
  "messages": [
    {
      "code": "*integer*",
      "documentation_url": "*string*",
      "message": "*string*",
      "source": {
        "pointer": "*string*"
      }
    }
  ],
  "result": {},
  "success": "*boolean*"
}

Delete CMB config

DELETE /accounts/{account_id}/logs/control/cmb/config

Deletes CMB config.

Responses

200 Delete CMB config response

Data is at body["result"]

{}

4XX Delete CMB config response failure

{
  "errors": [
    {
      "code": "*integer*",
      "documentation_url": "*string*",
      "message": "*string*",
      "source": {
        "pointer": "*string*"
      }
    }
  ],
  "messages": [
    {
      "code": "*integer*",
      "documentation_url": "*string*",
      "message": "*string*",
      "source": {
        "pointer": "*string*"
      }
    }
  ],
  "result": {},
  "success": "*boolean*"
}