Create Augmentation Configuration

Endpoint to create a new augmentation configuration.

SecurityapiKey
Request
Request Body schema: application/json
object (AugmentationConfiguration)

The effective settings for the augmentation.

featuresOn
Array of strings (TransactionFeaturesOn)

Features to be enabled. Do not use CREATE_TRANSACTION and COMMIT_TRANSACTION at the same time.

Items Enum: Description
CREATE_TRANSACTION

Creates a new transaction and makes the current request a part of it. By default turned off.

COMMIT_TRANSACTION

Commit transaction. By default turned off.

Example: ["CREATE_TRANSACTION"]
name
string (ConfigurationName)

Display name for a configuration.

Example: "Client configuration."
workspaceId
string (WorkspaceId)

Uniquely identifying ID of the workspace.

Example: "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4"
Responses
200

Augmentation configuration created successfully

400

Bad Request.

post/configurations/augmentation
Request samples
application/json
{
  • "configuration": {
    },
  • "name": "Client configuration"
}
Response samples
application/json
{
  • "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
  • "name": "Client configuration.",
  • "version": 1,
  • "createdAt": "2025-02-21T08:27:07Z",
  • "createdBy": "76248934691294444",
  • "modifiedAt": "2025-02-21T08:27:07Z",
  • "configuration": {
    }
}