Skip to content

Retrieve a Debian group distribution

GET
/api/v4/groups/{id}/-/debian_distributions/{codename}

Retrieves a specified Debian group distribution for a group.

id
required
One of:
string

The ID or URL-encoded path of the group

codename
required
string
/(?:^(?:[0-9A-Za-z\u017F\u212A][\x2D.0-9A-Za-z\u017F\u212A]*)$)/

The Debian Codename

Example
sid

OK

Media type application/json
object
id
integer format: int64
codename
string
suite
string
origin
string
label
string
version
string
description
string
valid_time_duration_seconds
integer
components
Array<string>
architectures
Array<string>
Example
{
"id": 1,
"codename": "sid",
"suite": "unstable",
"origin": "Grep",
"label": "grep.be",
"version": "12",
"description": "My description",
"valid_time_duration_seconds": 604800,
"components": [
"main"
],
"architectures": [
"amd64"
]
}

Bad Request

Unauthorized

Forbidden

Not Found