curl --request PUT \
--url https://api.anam.ai/v1/avatars/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayName": "<string>"
}
'Update an avatar by ID (only display name can be updated)
curl --request PUT \
--url https://api.anam.ai/v1/avatars/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayName": "<string>"
}
'Was this page helpful?