API endpoint that allows component_groups to be viewed or edited.

Documents & examples

Method: GET

URL: /rest_api/v1/component-groups/

Query params:

  • group_type (string)
  • release (string)
  • release_component (string)
  • ordering (string) Comma separated list of fields for ordering results.
    • To sort by a field in descending order, prefix its name with minus (e.g. -name).
    • Use double underscores for nested field names (e.g. parent__child for {"parent": {"child": ...}}).

Following filters can be used to show only specific fields. This can make response time faster. Format is list or single value (JSON: {"fields": ["a","b"]} or {"fields": "a"}, in URL: ?fields=a&fields=b).

  • fields (list | string) Fields to display (other fields will be hidden).
  • exclude_fields: (list | string) Fields NOT to display (overrules fields).

Response: a paged list of following objects

{
    "components (optional, default=null)": [
        {
            "id": "int", 
            "name": "string"
        }
    ], 
    "description": "string", 
    "group_type": "GroupType.name", 
    "id (read-only)": "int", 
    "release": "Release.release_id"
}

Method: GET

URL: /rest_api/v1/component-groups/{instance_pk}/

Response:

{
    "components (optional, default=null)": [
        {
            "id": "int", 
            "name": "string"
        }
    ], 
    "description": "string", 
    "group_type": "GroupType.name", 
    "id (read-only)": "int", 
    "release": "Release.release_id"
}

Method: POST

URL: /rest_api/v1/component-groups/

Data:

{
    "group_type":       string,         # required
    "release":          string,         # required
    "description":      string,         # required
    "components":       list            # optional
}

group_type: /rest_api/v1/component-group-types/

Note:

  • components: list of release_components, eg: [{"id": 1}, {"id": 2}] or [{"release": "release-1.0", "name": "python27"}]
  • group_type, release and release_components have to be existed before creating Release Component Group
  • It's not allowed to group release_components from different releases

Response:

{
    "components (optional, default=null)": [
        {
            "id": "int", 
            "name": "string"
        }
    ], 
    "description": "string", 
    "group_type": "GroupType.name", 
    "id (read-only)": "int", 
    "release": "Release.release_id"
}

It is possible to create this resource in bulk. To do so, use the same procedure as when creating a single instance, only the request body should contain a list of JSON objects. The response you get back will also contain a list of values which you would obtain by submitting the request data separately.

Method: PUT, PATCH

URL: /rest_api/v1/component-groups/{instance_pk}/

Data:

{
    "group_type":       string,
    "release":          string,
    "description":      string,
    "components":       list
}

Note:

  • components: list of release_components, eg: [{"id": 1}, {"id": 2}] or [{"release": "release-1.0", "name": "python27"}]

Response:

{
    "components (optional, default=null)": [
        {
            "id": "int", 
            "name": "string"
        }
    ], 
    "description": "string", 
    "group_type": "GroupType.name", 
    "id (read-only)": "int", 
    "release": "Release.release_id"
}

Method: DELETE

URL: /rest_api/v1/component-groups/{instance_pk}/

Response:

On success, HTTP status code is 204 and the response has no content.

It is possible to delete multiple items in one request. Use the DELETE method with the same url as for listing/creating objects. The request body should contain a list with identifiers for objects to be deleted. The identifier is usually the last part of the URL for deleting a single object.

It is possible to update multiple objects in one request. Use the PUT or PATCH method with the same url as for listing/creating objects. The request body should contain an object, where keys are identifiers of objects to be modified and their values use the same format as normal update.

Browsable GET

GET /rest_api/v1/component-groups/
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 6,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "group_type": "atomic-docker-host",
            "description": "Deps for atomic-docker-host https://git.fedorahosted.org/cgit/fedora-atomic.git/plain/",
            "release": "fedora-25",
            "components": []
        },
        {
            "id": 2,
            "group_type": "atomic-docker-host",
            "description": "Deps for atomic-docker-host https://git.fedorahosted.org/cgit/fedora-atomic.git/plain/",
            "release": "fedora-22-updates",
            "components": []
        },
        {
            "id": 3,
            "group_type": "atomic-docker-host",
            "description": "Deps for atomic-docker-host https://git.fedorahosted.org/cgit/fedora-atomic.git/plain/",
            "release": "fedora-23-updates",
            "components": []
        },
        {
            "id": 4,
            "group_type": "atomic-docker-host",
            "description": "Deps for atomic-docker-host https://git.fedorahosted.org/cgit/fedora-atomic.git/plain/",
            "release": "fedora-21-updates",
            "components": []
        },
        {
            "id": 5,
            "group_type": "atomic-docker-host",
            "description": "Deps for atomic-docker-host https://git.fedorahosted.org/cgit/fedora-atomic.git/plain/",
            "release": "fedora-24-updates",
            "components": []
        },
        {
            "id": 6,
            "group_type": "atomic-docker-host",
            "description": "Deps for atomic-docker-host https://git.fedorahosted.org/cgit/fedora-atomic.git/plain/",
            "release": "fedora-26",
            "components": []
        }
    ]
}