curl --request PUT \
--url https://nvidia.casebender.com/api/v1/comments/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "<string>"
}
'Update an existing comment
curl --request PUT \
--url https://nvidia.casebender.com/api/v1/comments/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "<string>"
}
'