Create and manage artists
{ "name": "Artist Name", "imageUrl": "https://placehold.co/1000x1000" }
{ "success": true, "data": { "artistId": "artist-123", "name": "Artist Name" } }
GET /v1/artists/{artistId}
{ "success": true, "message": "Artist found", "data": { "name": "Artist Name", "artistId": "artist-123", "imageAssetId": "image-123", } }
{ "name": "Updated Artist Name", "imageUrl": "https://placehold.co/1000x1000" }
{ "success": true, "data": { "artistId": "artist-123", "name": "Updated Artist Name", "imageAssetId": "image-456" } }