Skip to main content
GET
/
projects
/
{project}
/
releases
List Releases
curl --request GET \
  --url https://api.example.com/projects/{project}/releases
{
  "results": [
    {
      "created_by": "<string>",
      "created_on": "2023-11-07T05:31:56Z",
      "last_modified_by": "<string>",
      "last_modified_on": "2023-11-07T05:31:56Z",
      "project": "<string>",
      "published_on": "2023-12-25",
      "release_series": "<string>",
      "title": "<string>",
      "version": "<string>",
      "$schema": "<string>",
      "description": "<string>"
    }
  ],
  "$schema": "<string>",
  "pagination": {
    "continue": "<string>"
  }
}

Query Parameters

continue
string

Continuation token value (used when retrieving the next page of results).

n
integer<int64>

Number of records to show per page of results.

Required range: 0 <= x <= 100
filter
string

Record filter.

Response

OK

results
object[] | null
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/ListProjectReleaseOutputBody.json"

pagination
object