Config sections

Config section

get
Authorizations
Path parameters
configSectionIDstring · uuidRequired
Responses
200
OK
application/json
get
GET /v1/config_sections/{configSectionID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "projectID": "123e4567-e89b-12d3-a456-426614174000",
  "processingRuleID": "123e4567-e89b-12d3-a456-426614174000",
  "kind": "input",
  "properties": [
    {
      "key": "name",
      "value": "dummy"
    }
  ],
  "createdAt": "2025-06-27T23:52:29.365Z",
  "updatedAt": "2025-06-27T23:52:29.365Z"
}

Delete config section

delete
Authorizations
Path parameters
configSectionIDstring · uuidRequired
Responses
204
Deleted
delete
DELETE /v1/config_sections/{configSectionID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
204

Deleted

No content

Update config section

patch
Authorizations
Path parameters
configSectionIDstring · uuidRequired
Body
skipConfigValidationbooleanOptionalDefault: false
Responses
200
Updated
application/json
patch
PATCH /v1/config_sections/{configSectionID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 76

{
  "properties": [
    {
      "key": "name",
      "value": "dummy"
    }
  ],
  "skipConfigValidation": false
}
200

Updated

{
  "updatedAt": "2025-06-27T23:52:29.365Z"
}