Skip to main content
POST
/
api
/
v1
/
projects
Registers a :ref:`ref_flyteidl.admin.Project` with the Flyte deployment
curl --request POST \
  --url https://mycluster.domino.tech/api/v1/projects \
  --header 'Content-Type: application/json' \
  --data '
{
  "project": {
    "id": "<string>",
    "name": "<string>",
    "domains": [
      {
        "id": "<string>",
        "name": "<string>"
      }
    ],
    "description": "<string>",
    "labels": {
      "values": {}
    },
    "state": "ACTIVE",
    "org": "<string>"
  }
}
'
{}

Body

application/json
project
object

Top-level namespace used to classify different entities like workflows and executions.

Response

A successful response.

Purposefully empty, may be updated in the future.