The
/artist/
endpoint allows the creation of a new artist profile by providing details such as artist name, sign date, label, external ID, links, associated users, and their respective split shares.
Method:POST
Request Payload:
Parameter | Type | Description |
---|---|---|
artistName | string | The name of the artist. |
signDate | date | The date the artist was signed. |
label | string | The label associated with the artist. |
externalId | string | The external ID of the artist. |
links | object | Links to the artist’s website and social media profiles. |
users | array | An array of user IDs associated with the artist. |
split | array | An array of objects containing user IDs and their respective shares. |
See sample payload and response below
Authentication
This endpoint requires authentication. Include your bearer token in the Authorization header.Request Body
Example Request
Request Schema
Field | Type | Required | Description |
---|---|---|---|
artistName | string | ✅ | The name of the artist |
signDate | string | ✅ | The date the artist was signed |
externalId | string | ❌ | The external ID of the artist |
label | string | ❌ | The label associated with the artist |
copyright | string | ❌ | Copyright information |
publisher | string | ❌ | Publisher information |
contributors | array | ❌ | Contributors to the artist |
links | object | ❌ | Links to the artist’s website and social media profiles |
users | array | ✅ | An array of user IDs associated with the artist |
split | array | ✅ | An array of objects containing user IDs and their respective shares |
Responses
✅ 201 - Success
⚠️ 400 - undefined
⚠️ 401 - undefined
⚠️ 404 - undefined
❌ 500 - Internal Server Error
Tags
Artist
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Body
application/json
The name of the artist
The date the artist was signed
An array of user IDs associated with the artist
An array of objects containing user IDs and their respective shares
The external ID of the artist
The label associated with the artist
Copyright information
Publisher information
Contributors to the artist
Links to the artist's website and social media profiles