Skip to main content
PUT
/
api
/
sessions
/
{sessionId}
/
items
/
{itemId}
/
comments
/
{commentId}
Update a comment
curl --request PUT \
  --url https://api.example.com/api/sessions/{sessionId}/items/{itemId}/comments/{commentId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>"
}
'
{}

Path Parameters

sessionId
string
required
itemId
string
required
commentId
string
required

Body

application/json
content
string
required

Response

Undescribed

The response is of type object.