Path parameters

  • projectId string Required
application/json

Body

  • name string
  • tags array[string]

Responses

  • 200 application/json

    success

    Hide response attributes Show response attributes object
    • id string

      id of the project

    • userId string

      subject of the user owner (empty when teamId is set)

    • teamId string

      id of the owner team (empty when userId is set)

    • branch string

      branch context in which the project was created

    • name string

      name of the project

    • tags array[string]
    • createdAt string

      date in rfc3339 / ISO 8601 format when the project was created

    • updatedAt string

      date in rfc3339 / ISO 8601 format when the project was updated

PUT /project/{projectId}
curl \
 --request PUT 'https://api.universecloud.io/project/64a1cc789f556f7ce46c576b' \
 --header "X-Api-Key: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"name":"string","tags":["string"]}'
Request examples
{
  "name": "string",
  "tags": [
    "string"
  ]
}
Response examples (200)
{
  "id": "64a1cc789f556f7ce46c576b",
  "userId": "string",
  "teamId": "string",
  "branch": "dev",
  "name": "saas project",
  "tags": [
    "saas",
    "startup"
  ],
  "createdAt": "2023-06-21T12:34:56+00:00",
  "updatedAt": "2023-06-21T12:34:56+00:00"
}