GET /api/compliance/scap_contents
List SCAP contents

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

search
optional

filter results

Validations:

  • Must be a String

order
optional

Sort and order by a searchable field, e.g. 'id DESC'

Validations:

  • Must be a String

page
optional

Page number, starting at 1

Validations:

  • Must be a number.

per_page
optional

Number of results per page to return, 'all' to return all results

Validations:

  • Must match regular expression /\A([1-9]\d*|all)\Z$/.

Search fields

Field name Type Possible values
created_at
filename
location
location_id
organization
organization_id
title

GET /api/compliance/scap_contents/:id/xml
Download an SCAP content as XML

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

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.


GET /api/compliance/scap_contents/:id
Show an SCAP content

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

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.


POST /api/compliance/scap_contents
Create SCAP content

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

scap_content
required

Validations:

  • Must be a Hash

scap_content[title]
required

SCAP content name

Validations:

  • Must be a String

scap_content[scap_file]
required

XML containing SCAP content

Validations:

  • Must be a String

scap_content[original_filename]
optional , nil allowed

Original file name of the XML file

Validations:

  • Must be a String

scap_content[location_ids]
optional , nil allowed

REPLACE locations with given ids

Validations:

  • Must be an array of any type

scap_content[organization_ids]
optional , nil allowed

REPLACE organizations with given ids.

Validations:

  • Must be an array of any type


PUT /api/compliance/scap_contents/:id
Update an SCAP content

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

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.

scap_content
required

Validations:

  • Must be a Hash

scap_content[title]
optional

SCAP content name

Validations:

  • Must be a String

scap_content[scap_file]
optional

XML containing SCAP content

Validations:

  • Must be a String

scap_content[original_filename]
optional , nil allowed

Original file name of the XML file

Validations:

  • Must be a String

scap_content[location_ids]
optional , nil allowed

REPLACE locations with given ids

Validations:

  • Must be an array of any type

scap_content[organization_ids]
optional , nil allowed

REPLACE organizations with given ids.

Validations:

  • Must be an array of any type


DELETE /api/compliance/scap_contents/:id
Deletes an SCAP content

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

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.


POST /api/compliance/scap_contents/bulk_upload
Upload scap contents in bulk

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

type
required

Type of the upload

Validations:

  • Must be one of: files, directory, default.

files
optional

File paths to upload when using “files” upload type

Validations:

  • Must be an array of any type

directory
optional

Directory to upload when using “directory” upload type

Validations:

  • Must be a String