Skip to main content
PATCH
/
api
/
v1
/
backups
/
{file_uuid}
Update backup metadata
curl --request PATCH \
  --url https://api.example.com/api/v1/backups/{file_uuid} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "backup_type": "<string>",
  "is_compressed": true,
  "is_encrypted": true,
  "parent_backup_uuid": "<string>",
  "source_node_id": "<string>"
}
'
{
  "backup_type": "<string>",
  "blob_sha256": "<string>",
  "bucket_id": "<string>",
  "content_type": "<string>",
  "created_at": "<string>",
  "file_uuid": "<string>",
  "filename": "<string>",
  "is_compressed": true,
  "is_encrypted": true,
  "owner_id": "<string>",
  "parent_backup_uuid": "<string>",
  "size_bytes": 123,
  "source_node_id": "<string>",
  "updated_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://gns3util.saygex.xyz/llms.txt

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

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and JWT token.

Path Parameters

file_uuid
string
required

File UUID

Body

application/json

Update request

backup_type
string
is_compressed
boolean
is_encrypted
boolean
parent_backup_uuid
string
source_node_id
string

Response

OK

backup_type
string
blob_sha256
string
bucket_id
string
content_type
string
created_at
string
file_uuid
string
filename
string
is_compressed
boolean
is_encrypted
boolean
owner_id
string
parent_backup_uuid
string
size_bytes
integer
source_node_id
string
status
enum<string>
Available options:
pending,
uploading,
available,
tombstoned,
deleted
updated_at
string