LogoLogo
Support PortalCalyptia CoreContact Us
Calyptia Core API
Calyptia Core API
  • Specification
  • About
  • API reference
    • Verification email
    • Projects
      • Tokens
      • Members
      • Invite
      • Agents
      • Aggregators
      • Core instances
      • Aggregator pipelines
      • Pipelines
      • Environments
      • Metrics
      • Config sections
      • Fleets
        • Status
      • Aws contracts
      • Processing rule templates
      • Saml mappings
    • Project tokens
    • Members
    • Join project
    • Agents
      • Config history
      • Metrics
      • Metrics by plugin
      • Metrics over time
      • Metrics over time by plugin
      • Errors
    • Aggregators
      • Ping
      • Resource profiles
      • Pipelines
      • Pipelines metrics
    • Core instance files
    • Core instance secrets
    • Resource profiles
    • Aggregator pipelines
      • Config history
      • Status history
      • Files
      • Secrets
      • Ports
    • Pipeline files
    • Pipeline logs
    • Pipeline checks
    • Core instance checks
    • Ingest checks
    • Pipeline secrets
    • Pipeline ports
    • Config validate
    • Config validate v2
    • Environments
    • Pipeline metrics
    • Aggregator metrics
    • Cluster objects
    • Trace sessions
      • Records
    • Config sections
    • Processing rules
    • Preview processing rule
    • Fleets
      • Status
      • Config
      • Files
      • Agent errors
    • Fleet files
    • Search
    • Aws customer redirect
    • Cluster object regexes
    • Processing rule templates
    • Validate fluentbit config
    • Saml mappings
    • Core instances
      • Files
      • Secrets
      • Pipelines
      • Ingest checks
      • Checks
      • Cluster objects
      • Metrics
      • Metrics by plugin
      • Metrics over time
      • Metrics over time by plugin
    • Pipelines
      • Logs
      • Checks
      • Cluster objects
      • Metadata
      • Trace sessions
      • Trace session
        • Records
      • Config section set
      • Processing rules
      • Metrics
      • Metrics by plugin
      • Metrics over time
      • Metrics over time by plugin
      • Cluster object regexes
    • Agent errors
      • Dismiss
  • Specification
Powered by GitBook
On this page
  1. API reference

Core instance files

PreviousPipelines metricsNextCore instance secrets
  • DELETEDelete Core Instance File
  • PATCHUpdate Core Instance File

Delete Core Instance File

delete

Delete a file within a core instance.

Authorizations
Path parameters
coreInstanceFileIDstring · uuidRequired
Responses
200
OK
application/json
delete
DELETE /v1/core_instance_files/{coreInstanceFileID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "deleted": true,
  "deletedAt": "2025-05-21T21:31:34.084Z"
}

Update Core Instance File

patch

Update a file within a core instance. The file will be updated with the given name and content. If encypted is set to true, the file will be encrypted using the core instance's encryption key.

Authorizations
Path parameters
coreInstanceFileIDstring · uuidRequired
Body
namestring | nullableOptionalDefault: nullExample: myfile
contentsstring · byte | nullableOptional

Optional contents of the file to be updated in base 64 format.

Default: null
encryptedboolean | nullableOptionalDefault: null
Responses
200
OK
application/json
patch
PATCH /v1/core_instance_files/{coreInstanceFileID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 56

{
  "name": "myfile",
  "contents": "Ynl0ZXM=",
  "encrypted": true
}
200

OK

{
  "updatedAt": "2025-05-21T21:31:34.084Z"
}