Skip to main content
PUT
/
api
/
v1
/
organizations
/
{organizationID}
/
projects
/
{projectID}
Update project
curl --request PUT \
  --url https://identity.nks.europe-west4.nscale.com/api/v1/organizations/{organizationID}/projects/{projectID} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "metadata": {
    "name": "my-project"
  },
  "spec": {
    "groupIDs": [
      "ddde69ef-bb52-4815-9e9e-aed856c6057f"
    ]
  }
}
'
{
  "error": "invalid_request",
  "error_description": "request body invalid"
}

Documentation Index

Fetch the complete documentation index at: https://docs.nscale.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Operation requires OAuth 2.0 bearer token authentication.

Path Parameters

organizationID
string
required

An organization ID.

projectID
string
required

A project ID.

Body

application/json

Project request parameters.

A project when created or updated.

metadata
object
required

Metadata required for all API resource reads and writes.

spec
object
required

A project.

Response

Project successfully updated.