Skip to main content
DELETE
Delete Default Setting (Entity-Specific)

Description

DELETE /defaultsettings/// Description: Permanently delete a default setting for a specific entity (label, artist, or user). This action cannot be undone. 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 DELETE /defaultsettings/{entityType}/{settingId} endpoint instead (without entityId). Authorization:
  • Required role: admin or higher
Method: DELETE Path Parameters:

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 delete

Response

Default setting deleted successfully

success
boolean
Example:

true

message
string
Example:

"Default setting deleted successfully"