Skip to main content
PUT
/
api
/
chat
/
messages
/
{messageId}
/
feedback
(Auth policies: ApiKeyOrJwt)
curl --request PUT \
  --url https://app.codealive.ai/api/chat/messages/{messageId}/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "conversationId": "<string>",
  "messageId": "<string>",
  "feedback": "<string>",
  "isLiked": true
}
'

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token. Example: "Authorization: Bearer {apiKey}"

Headers

CodeAlive-Version
string

Path Parameters

messageId
string
required

Body

conversationId
string | null
required
messageId
string | null
required
feedback
string | null
isLiked
boolean | null

Response

OK