SPA CRUD Configuration

SPA CRUD Configuration - Create column configuration

Creates a new column configuration for the authenticated user or as client default.

POST/api/spa/crud-configuration

Authorizations

X-AUTH-TOKEN
stringheaderrequired

Value for the X-AUTH-TOKEN header parameter.

Request Body

application/json
required

The new SpaCrudConfiguration resource

{
  "entityName": "StandardValue",
  "configuration": [
    "id",
    "identifier",
    "value",
    "active"
  ],
  "isDefaultFields": false
}

Response

201application/json

SpaCrudConfiguration resource created

id
integer

Configuration ID

Example: 1

entityName
stringrequired

Entity name for this configuration

Example: "StandardValue"

configuration
string[]required

Array of visible column keys in display order

Example: ["id","identifier","value","active"]

userId
integer

User ID if this is a user-specific configuration (null for client default)

Example: null

clientConfigurationId
integer

Client configuration ID (for reference when saving as default)

Example: null