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-configurationAuthorizations
X-AUTH-TOKEN
stringheaderrequired
Value for the X-AUTH-TOKEN header parameter.
Request Body
application/json
required
The new SpaCrudConfiguration resource
{
"id": 1,
"entityName": "StandardValue",
"configuration": [
"id",
"identifier",
"value",
"active"
],
"isDefaultFields": false,
"userId": null,
"clientConfigurationId": null
}Response
201
SpaCrudConfiguration resource created
id
integer
Configuration ID
entityName
stringrequired
Entity name for this configuration
configuration
string[]required
Array of visible column keys in display order
isDefaultFields
boolean
If true, saves as client default. If false, saves for current user only.
userId
integer
User ID if this is a user-specific configuration (null for client default)
clientConfigurationId
integer
Client configuration ID (for reference when saving as default)