The
/artist/{id}
endpoint allows updating the details of a specific artist identified by their unique ID.
Method:PUT
Path Parameter:
Parameter | Type | Description |
---|---|---|
id | string | The unique identifier of the artist. |
Parameter | Type | Description |
---|---|---|
artistName | string | The updated name of the artist. |
signDate | date | The updated sign date. |
label | string | The updated label. |
externalId | string | The updated external ID. |
links | object | Updated links. |
split | array | Updated split information. |
Authentication
This endpoint requires authentication. Include your bearer token in the Authorization header.Path Parameters
Parameter | Type | In | Required | Description |
---|---|---|---|---|
id | string | path | ✅ | Artist ID |
Request Body
Request Schema
Field | Type | Required | Description |
---|---|---|---|
artistName | string | ❌ | |
signDate | string | ❌ | |
label | string | ❌ | |
externalId | string | ❌ | |
links | object | ❌ | |
split | array | ❌ |
Responses
✅ 200 - Success
⚠️ 401 - Unauthorized
⚠️ 404 - Not Found
❌ 500 - Internal Server Error
Tags
Artist
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Path Parameters
Artist ID
Body
application/json