GET /katello/api/content_views/:composite_content_view_id/content_view_components
List components attached to this content view

Examples

GET /katello/api/content_views/1058174826/content_view_components
200
{
  "total": 0,
  "subtotal": 0,
  "selectable": 0,
  "page": 1,
  "per_page": 20,
  "error": null,
  "search": null,
  "sort": {
    "by": "label",
    "order": "asc"
  },
  "results": []
}

Params

Param name Description
composite_content_view_id
required

composite content view identifier

Validations:

  • Must be a number.


PUT /katello/api/content_views/:composite_content_view_id/content_view_components/add
Add components to the content view

Examples

PUT /katello/api/content_views/1058174825/content_view_components/add
{
  "components": [
    {
      "content_view_id": 909058347,
      "latest": true
    }
  ],
  "content_view_component": {}
}
200
{
  "total": 0,
  "subtotal": 0,
  "selectable": 0,
  "page": null,
  "per_page": null,
  "error": null,
  "search": null,
  "sort": {
    "by": null,
    "order": null
  },
  "results": []
}

Params

Param name Description
composite_content_view_id
required

composite content view identifier

Validations:

  • Must be a number.

components
required

Array of components to add

Validations:

  • Must be an Array of nested elements

components[content_view_version_id]
optional

identifier of the version of the component content view

Validations:

  • Must be a number.

components[content_view_id]
optional

content view identifier of the component who's latest version is desired

Validations:

  • Must be a number.

components[latest]
optional

true if the latest version of the component's content view is desired

Validations:

  • Must be one of: true, false, 1, 0.


PUT /katello/api/content_views/:composite_content_view_id/content_view_components/remove
Remove components from the content view

Examples

PUT /katello/api/content_views/1058174829/content_view_components/remove
{
  "component_ids": [
    34
  ],
  "content_view_component": {}
}
200
{
  "total": 0,
  "subtotal": 0,
  "selectable": 0,
  "page": null,
  "per_page": null,
  "error": null,
  "search": null,
  "sort": {
    "by": null,
    "order": null
  },
  "results": []
}

Params

Param name Description
composite_content_view_id
required

composite content view identifier

Validations:

  • Must be a number.

component_ids
required

Array of content view component IDs to remove. Identifier of the component association

Validations:

  • Must be an array of any type


GET /katello/api/content_views/:composite_content_view_id/content_view_components/:id
Show a content view component

Examples

GET /katello/api/content_views/1058174828/content_view_components/33
204

Params

Param name Description
composite_content_view_id
required

composite content view numeric identifier

Validations:

  • Must be a number.

id
required

content view component ID. Identifier of the component association

Validations:

  • Must be a number.


PUT /katello/api/content_views/:composite_content_view_id/content_view_components/:id
Update a component associated with the content view

Examples

PUT /katello/api/content_views/1058174824/content_view_components/30
{
  "content_view_version_id": 172022917,
  "latest": false,
  "content_view_component": {
    "content_view_version_id": 172022917,
    "latest": false
  }
}
204

Params

Param name Description
composite_content_view_id
required

composite content view identifier

Validations:

  • Must be a number.

id
required

content view component ID. Identifier of the component association

Validations:

  • Must be a number.

content_view_version_id
optional

identifier of the version of the component content view

Validations:

  • Must be a number.

latest
optional

true if the latest version of the components content view is desired

Validations:

  • Must be one of: true, false, 1, 0.