Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Avatar ID
Body
application/json
New display name for the avatar
Response
Successfully updated avatar
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>"
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Avatar ID
New display name for the avatar
Successfully updated avatar
Was this page helpful?