List Installation Files

URL : /api/v1/installation-files/

Method : GET

Query parameters

Pagination

Default pagination is 20 results per page.

  • limit - Number of results to return per page.

    • Example: limit=20

  • offset - The initial index from which to return the results.

    • Example: offset=21

Filtering

The results can be filtered by various attributes on installation file or related to the installation file.

Possible filters:

  • product

Success Response

Code : 200 OK

Content examples :

{
    "count": 3,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 733508,
            "created_at": "2023-04-19T08:23:00Z",
            "updated_at": "2023-04-19T08:27:32Z",
            "version": "1.0.4",
            "full_link": "https://example.com/installation_file_4.zip",
            "filename": "installation_file_4.zip",
            "release_date": "2023-04-05",
            "enabled": true,
            "hash_md5": "aaaaaaaaaaaaaaaaaaaaaaaa",
            "environment": "linux64",
            "release_notes_link": "",
            "eula_link": "",
            "size": "600",
            "requires_version": "1.0.3",
            "channel": "",
            "product": 1586066454419502
        },
        ...
    ]
}

Last updated

Was this helpful?