PUT
/
projects
/
{projectUUID}
Update project
curl --request PUT \
  --url https://api.fluxend.app/projects/{projectUUID} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "<string>",
  "name": "<string>",
  "projectUUID": "<string>"
}'
{
  "content": {
    "createdAt": "<string>",
    "createdBy": "<string>",
    "dbName": "<string>",
    "description": "<string>",
    "name": "<string>",
    "organizationUuid": "<string>",
    "status": "<string>",
    "updatedAt": "<string>",
    "updatedBy": "<string>",
    "uuid": "<string>"
  },
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

Path Parameters

projectUUID
string
required

Project UUID

Body

application/json

Project name

The body is of type object.

Response

200
application/json

Project details

The response is of type object.