PUT
/
storage
/
containers
/
{containerUUID}
Update container
curl --request PUT \
  --url https://api.fluxend.app/storage/containers/{containerUUID} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'X-Project: <x-project>' \
  --data '{
  "description": "<string>",
  "is_public": true,
  "max_file_size": 123,
  "name": "<string>",
  "projectUUID": "<string>"
}'
{
  "content": {
    "createdAt": "<string>",
    "createdBy": "<string>",
    "description": "<string>",
    "isPublic": true,
    "maxFileSize": 123,
    "name": "<string>",
    "projectUuid": "<string>",
    "totalFiles": 123,
    "updatedAt": "<string>",
    "updatedBy": "<string>",
    "url": "<string>",
    "uuid": "<string>"
  },
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

X-Project
string
required

Project UUID

Path Parameters

containerUUID
string
required

Container UUID

Body

application/json

Container details

The body is of type object.

Response

200
application/json

Container updated

The response is of type object.