Parameters
comment
dictionary
message
string
PUT/v1/comments/{{comment_id}}
bash
curl https://api.tradly.app/v1/comments/{{comment_id}} \
-H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
-H "Content-Type: application/json" \
-X PUT \
-d '{
"comment": {
"message": "Updated: Is this product available for express shipping?"
}
}'RESPONSE
json
{
"status": true,
"data": {
"comment": {
"id": 105
}
}
}