PUT
/
artist
/
{id}
Update Artist
curl --request PUT \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/artist/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "artistName": "<string>",
  "signDate": "2023-12-25",
  "label": "<string>",
  "externalId": "<string>",
  "links": {},
  "split": [
    {
      "user": "<string>",
      "share": 123
    }
  ]
}'
{
  "message": "Artist updated successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Artist ID

Body

application/json

Response

200
application/json

Success

The response is of type object.