API endpoint that allows content_format to be viewed.

Documents & examples

Method: GET

URL: /rest_api/v1/content-delivery-content-formats/

Response:

{
    "description": "string", 
    "name": "string", 
    "pdc_endpoint (optional, default=null, nullable)": "string"
}

Browsable GET

GET /rest_api/v1/content-delivery-content-formats/
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 6,
    "next": null,
    "previous": null,
    "results": [
        {
            "name": "rpm",
            "pdc_endpoint": null,
            "description": "RPM packages"
        },
        {
            "name": "iso",
            "pdc_endpoint": null,
            "description": "ISO images"
        },
        {
            "name": "kickstart",
            "pdc_endpoint": null,
            "description": "Installable kickstart trees"
        },
        {
            "name": "comps",
            "pdc_endpoint": null,
            "description": "Comps XML with package group definitions"
        },
        {
            "name": "docker",
            "pdc_endpoint": null,
            "description": "Docker image content format"
        },
        {
            "name": "dud",
            "pdc_endpoint": null,
            "description": "Driver Update Disk"
        }
    ]
}