Skip to main content
PATCH
/
chats
/
lists
/
custom
/
{uuid}
Rename a custom list
curl --request PATCH \
  --url https://api.fanvue.com/chats/lists/custom/{uuid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Fanvue-API-Version: <x-fanvue-api-version>' \
  --data '
{
  "name": "My VIP list"
}
'
{
  "error": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Fanvue-API-Version
string
default:2025-06-26
required

API version to use for the request

Example:

"2025-06-26"

Path Parameters

uuid
string<uuid>
required

Custom list UUID

Body

application/json
name
string
required

New name for the custom list

Required string length: 1 - 100

Response

Custom list updated successfully