Skip to main content
PUT
/
artist-clients
/
update-notes
/
{id}
Update Client Notes
curl --request PUT \
  --url http://localhost:3000/api/artist-clients/update-notes/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "notes": "<string>"
}
'
{
  "success": true
}

Path Parameters

id
string
required

The ID of the client to update

Body

application/json
notes
string
required

Updated notes for the client

Response

Notes updated successfully

success
boolean
required

Whether the operation was successful