GET
/
containers
/
{containerUUID}
Retrieves container
curl --request GET \
  --url https://api.fluxend.app/containers/{containerUUID} \
  --header 'Authorization: <authorization>' \
  --header 'X-Project: <x-project>'
{
  "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

Response

200
application/json

Container details

The response is of type object.