Red Hat subscriptions management platform.


GET /katello/api/organizations/:organization_id/simple_content_access/eligible
Check if the specified organization is eligible for Simple Content Access

Examples

GET /katello/api/organizations/114267492/simple_content_access/eligible
200
{
  "simple_content_access_eligible": true
}

GET /katello/api/organizations/:organization_id/simple_content_access/status
Check if the specified organization has Simple Content Access enabled

Examples

GET /katello/api/organizations/114267492/simple_content_access/status
200
{
  "simple_content_access": true
}

Params

Param name Description
organization_id
required

Organization ID

Validations:

  • Must be a number.


PUT /katello/api/organizations/:organization_id/simple_content_access/enable
Enable simple content access for a manifest

Examples

PUT /katello/api/organizations/114267492/simple_content_access/enable
{
  "simple_content_access": {}
}
202
{
  "id": null,
  "label": null,
  "pending": null,
  "username": null,
  "started_at": null,
  "ended_at": null,
  "state": null,
  "result": null,
  "progress": null,
  "input": null,
  "output": {},
  "humanized": null,
  "cli_example": null,
  "available_actions": {
    "cancellable": null,
    "resumable": null
  }
}

Params

Param name Description
organization_id
required

Organization ID

Validations:

  • Must be a number.


PUT /katello/api/organizations/:organization_id/simple_content_access/disable
Disable simple content access for a manifest

Examples

POST /katello/api/organizations/114267492/simple_content_access/disable
{
  "simple_content_access": {}
}
204

Params

Param name Description
organization_id
required

Organization ID

Validations:

  • Must be a number.