Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions api-reference/openapi/releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -818,6 +818,24 @@
}
}
],
"requestBody": {
"description": "Optional account context override.",
"required": false,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"account_id": {
"type": "string",
"format": "uuid",
"description": "UUID of the account whose artist should be deleted. Only applicable when the authenticated account has access to multiple accounts via organization membership or Recoup admin access. If not provided, the deletion runs in the API key's own account context."
}
}
}
}
}
},
"responses": {
"200": {
"description": "Artist deleted successfully",
Expand All @@ -829,6 +847,16 @@
}
}
},
"400": {
"description": "Bad request - account_id is not a valid UUID",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeleteArtistErrorResponse"
}
}
}
},
"401": {
"description": "Unauthorized - missing or invalid authentication"
},
Expand Down