Skip to main content
GET
/
api
/
v1
/
projects
Fetches a list of :ref:`ref_flyteidl.admin.Project`
curl --request GET \
  --url https://mycluster.domino.tech/api/v1/projects
{
  "projects": [
    {
      "id": "<string>",
      "name": "<string>",
      "domains": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ],
      "description": "<string>",
      "labels": {
        "values": {}
      },
      "state": "ACTIVE",
      "org": "<string>"
    }
  ],
  "token": "<string>"
}

Query Parameters

limit
integer<int64>

Indicates the number of projects to be returned. +required

token
string

In the case of multiple pages of results, this server-provided token can be used to fetch the next page in a query. +optional

filters
string

Indicates a list of filters passed as string. More info on constructing filters : +optional

sort_by.key
string

Indicates an attribute to sort the response values. +required

sort_by.direction
enum<string>
default:DESCENDING

Indicates the direction to apply sort key for response values. +optional

  • DESCENDING: By default, fields are sorted in descending order.
Available options:
DESCENDING,
ASCENDING
org
string

Optional, org filter applied to list project requests.

Response

A successful response.

projects
object[]
token
string

In the case of multiple pages of results, the server-provided token can be used to fetch the next page in a query. If there are no more results, this value will be empty.