Skip to main content
POST
/
v1
/
convai
/
conversations
/
{conversation_id}
/
feedback
Python
from elevenlabs import ElevenLabs

client = ElevenLabs(
    api_key="YOUR_API_KEY",
)
client.conversational_ai.post_conversation_feedback(
    conversation_id="21m00Tcm4TlvDq8ikWAM",
    feedback="like",
)
"<any>"

Path Parameters

conversation_id
string
required

The id of the conversation you're taking the action on.

Body

application/json
feedback
enum<string>
required

Either 'like' or 'dislike' to indicate the feedback for the conversation. An enumeration.

Available options:
like,
dislike

Response

Successful Response

The response is of type any.