Skip to main content
PUT
Update Default Setting (Entity-Specific)

Description

PUT /defaultsettings/// Description: Update an existing default setting for a specific entity (label, artist, or user). Settings are deep-merged within their category, allowing partial updates without losing existing configuration. Entity Types (for this endpoint):
  • label - Label-specific defaults (entityId required)
  • artist - Artist-specific defaults (entityId required)
  • user - User-specific defaults (entityId required)
Note: For tenant or catalog-level defaults, use the PUT /defaultsettings/{entityType}/{settingId} endpoint instead (without entityId). Authorization:
  • Required role: admin or higher
Method: PUT Path Parameters: Request Body:

Code Examples

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Path Parameters

entityType
enum<string>
required

Type of entity (label, artist, or user only)

Available options:
label,
artist,
user
entityId
string<uuid>
required

Entity ID

settingId
string<uuid>
required

ID of the setting to update

Body

application/json
settings
object

The actual settings data organized by category

isActive
boolean
priority
integer

Response

Default setting updated successfully

success
boolean
Example:

true

message
string
Example:

"Default setting updated successfully"

data
object

A default setting entry