Config sections

Config sections

get
Authorizations
Path parameters
projectIDstring · uuidRequired
Query parameters
lastintegerOptional

Last config sections.

beforestringOptional

Config sections before the given cursor.

include_processing_rulesbooleanOptional

Include config sections that were created through a processing rule.

Responses
200
OK
application/json
get
GET /v1/projects/{projectID}/config_sections 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-28T01:22:26.102Z",
    "updatedAt": "2025-06-28T01:22:26.102Z"
  }
]

Create config section

post
Authorizations
Path parameters
projectIDstring · uuidRequired
Body
kindstring · enumRequiredPossible values:
skipConfigValidationbooleanRequiredDefault: false
Responses
201
Created
application/json
post
POST /v1/projects/{projectID}/config_sections HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 91

{
  "kind": "input",
  "properties": [
    {
      "key": "name",
      "value": "dummy"
    }
  ],
  "skipConfigValidation": false
}
201

Created

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "createdAt": "2025-06-28T01:22:26.102Z"
}