GET /api/audits
List all audits

GET /api/hosts/:host_id/audits
List all audits for a given host

Examples

GET /api/audits
200
{
  "total": 1,
  "subtotal": 1,
  "page": 1,
  "per_page": 20,
  "search": null,
  "sort": {
    "by": null,
    "order": null
  },
  "results": [
    {
      "user_id": null,
      "user_type": null,
      "user_name": null,
      "version": 1,
      "comment": null,
      "associated_id": 272,
      "associated_type": "Host",
      "remote_address": null,
      "associated_name": null,
      "created_at": "2009-12-14 08:01:17 UTC",
      "id": 980190962,
      "auditable_id": 980190962,
      "auditable_name": null,
      "auditable_type": "Host",
      "action": "update",
      "audited_changes": {
        "architecture_id": [
          10463,
          10466
        ]
      }
    }
  ]
}

Params

Param name Description
location_id
optional

Scope by locations

Validations:

  • Must be a Integer

organization_id
optional

Scope by organizations

Validations:

  • Must be a Integer

search
optional

filter results

Validations:

  • Must be a String

order
optional

Sort field and order, eg. ‘id DESC’

Validations:

  • Must be a String

page
optional

paginate results

Validations:

  • Must be a String

per_page
optional

number of entries per request

Validations:

  • Must be a String

Search fields

Field name Type Possible values
action create, update, delete
changes text
comment string
host string
hostgroup string
hostgroup_title string
interface_fqdn string
interface_ip string
interface_mac string
location string
location_id integer
organization string
organization_id integer
os string
os_title string
parameter string
partition_table string
provisioning_template string
puppetclass string
remote_address string
setting string
time datetime
type operatingsystem, taxonomy, role, ptable, provisioning_template, user, auth_source, compute_resource, host, interface, location, os, organization, override_value, partition_table, smart_class_parameter, smart_variable, parameter, setting
user string
username string

GET /api/audits/:id
Show an audit

Examples

GET /api/audits/980190962
200
{
  "user_id": null,
  "user_type": null,
  "user_name": null,
  "version": 1,
  "comment": null,
  "associated_id": 272,
  "associated_type": "Host",
  "remote_address": null,
  "associated_name": null,
  "created_at": "2009-12-14 08:01:17 UTC",
  "id": 980190962,
  "auditable_id": 980190962,
  "auditable_name": null,
  "auditable_type": "Host",
  "action": "update",
  "audited_changes": {
    "architecture_id": [
      10463,
      10466
    ]
  },
  "locations": [],
  "organizations": []
}

Params

Param name Description
location_id
optional

Scope by locations

Validations:

  • Must be a Integer

organization_id
optional

Scope by organizations

Validations:

  • Must be a Integer

id
required

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.