Skip to content

List all Debian group distributions

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

Lists all Debian distributions for a specified group.

id
required
One of:
string

The ID or URL-encoded path of the group

page
integer
default: 1 nullable

Current page number

Example
1
per_page
integer
default: 20 nullable

Number of items per page

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

The Debian Codename

Example
sid
suite
string
nullable /(?:^(?:[0-9A-Za-z\u017F\u212A][\x2D.0-9A-Za-z\u017F\u212A]*)$)/

The Debian Suite

Example
unstable
origin
string
nullable /(?:^(?:[0-9A-Za-z\u017F\u212A][\x2D.0-9A-Za-z\u017F\u212A]*)$)/

The Debian Origin

Example
Grep
label
string
nullable /(?:^(?:[0-9A-Za-z\u017F\u212A][\x2D.0-9A-Za-z\u017F\u212A]*)$)/

The Debian Label

Example
grep.be
version
string
nullable /(?:^(?:(?:([0-9]{1,9}):)?([0-9][+.0-9A-Za-z~\u017F\u212A]*)(-[+.0-9A-Za-z~\u017F\u212A]+){0,14}(?<!-))$)/

The Debian Version

Example
12
description
string
nullable

The Debian Description

Example
My description
valid_time_duration_seconds
integer
nullable

The duration before the Release file should be considered expired by the client

Example
604800
components
Array<string>
nullable

The list of Components

Example
?components=main
architectures
Array<string>
nullable

The list of Architectures

Example
?architectures=amd64

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