The
/product/{id}
endpoint allows updating the details of a specific product identified by its unique ID.
Method:PUT
Path Parameter:
Parameter | Type | Description |
---|---|---|
id | string | The unique identifier of the product. |
Parameter | Type | Description |
---|---|---|
title | string | The updated title of the product. |
displayArtist | string | The updated display artist. |
mainArtist | array | Updated main artists. |
type | string | The updated product type. |
format | string | The updated format. |
releaseDate | string | The updated release date. |
mainGenre | array | Updated main genres. |
subGenre | array | Updated sub genres. |
label | string | The updated label. |
status | string | The updated status. |
distribution | string | The updated distribution. |
metadata | object | Updated metadata. |
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 | ✅ | Product ID |
Request Body
Request Schema
Field | Type | Required | Description |
---|---|---|---|
title | string | ❌ | |
displayArtist | string | ❌ | |
mainArtist | array | ❌ | |
type | string | ❌ | |
format | string | ❌ | |
releaseDate | string | ❌ | |
mainGenre | array | ❌ | |
subGenre | array | ❌ | |
label | string | ❌ | |
status | string | ❌ | |
distribution | string | ❌ | |
metadata | object | ❌ | |
split | array | ❌ |
Responses
✅ 200 - Success
⚠️ 401 - Unauthorized
⚠️ 404 - Not Found
❌ 500 - Internal Server Error
Tags
Product
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Path Parameters
Product ID
Body
application/json