API endpoint that allows service to be viewed.

Documents & examples

Method: GET

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

Response:

{
    "description": "string", 
    "name": "string"
}

Browsable GET

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

{
    "count": 3,
    "next": null,
    "previous": null,
    "results": [
        {
            "name": "rhn",
            "description": "Red Hat Network"
        },
        {
            "name": "pulp",
            "description": "Pulp (CDN)"
        },
        {
            "name": "ftp",
            "description": "ftp://ftp.redhat.com"
        }
    ]
}