Skip to main content
PATCH
/
compute
/
containers
/
{collection_topic}
/
{container_topic}
Update a container
curl --request PATCH \
  --url https://api.quiva.ai/compute/containers/{collection_topic}/{container_topic} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "Updated container description",
  "monitor_config": {
    "ttl": 1209600000,
    "store_payload": false
  }
}
'
{
  "message": "success"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

collection_topic
string
required

Collection topic identifier

container_topic
string
required

Container topic identifier

Body

application/json

Container properties to update

name
string

Container name

description
string

Container description

monitor_config
object
size
string

Size configuration for container resources

Response

Container patched successfully

message
string

Success message